1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 04:16:23 +03:00

brcm47xx-2.6: fix squashfs image partitioning problem

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7224 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-05-14 13:45:41 +00:00
parent cef31fddde
commit 77b6e0d258

View File

@ -335,10 +335,8 @@ init_mtd_partitions(struct mtd_info *mtd, size_t size)
}
/* find and size rootfs */
if (find_root(mtd,size,&bcm947xx_parts[2])==0) {
bcm947xx_parts[2].size = size - bcm947xx_parts[2].offset -
bcm947xx_parts[3].size;
}
find_root(mtd,size,&bcm947xx_parts[2]);
bcm947xx_parts[2].size = size - bcm947xx_parts[2].offset - bcm947xx_parts[3].size;
return bcm947xx_parts;
}