1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

fix broadcom-wl patchtable

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4247 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-07-24 07:10:13 +00:00
parent 27335d91b4
commit 97212085d9
3 changed files with 7 additions and 13 deletions

View File

@@ -128,7 +128,7 @@ static int ptable_init(void)
if (ptable[0] == PTABLE_MAGIC)
return 0;
glob("/lib/modules/2.4.*/wl.o", 0, NULL, &globbuf);
glob("/lib/modules/2.4.*/wl.o.patch", 0, NULL, &globbuf);
if (globbuf.gl_pathv[0] == NULL)
return -1;
@@ -139,13 +139,8 @@ static int ptable_init(void)
if (fstat(fd, &statbuf) < 0)
goto failed;
if (statbuf.st_size <= 512)
if (statbuf.st_size < 512)
goto failed;
if (lseek(fd, statbuf.st_size - 512, SEEK_SET) < 0) {
perror("lseek");
goto failed;
}
if (read(fd, ptable, 512) < 512)
goto failed;