diff options
author | Waldemar Brodkorb <wbx@openwrt.org> | 2005-11-29 12:40:29 +0000 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openwrt.org> | 2005-11-29 12:40:29 +0000 |
commit | 051d02bb97b6e02a9795225867e5204cf1561acb (patch) | |
tree | c558df1306b67466d7c288597191339e4f36c99e /target/linux/linux-2.6/patches/brcm/002-flash-map.patch | |
parent | 5157d76e86612cad7eb24f0237fa576d0c20bf9b (diff) | |
download | master-187ad058-051d02bb97b6e02a9795225867e5204cf1561acb.tar.gz master-187ad058-051d02bb97b6e02a9795225867e5204cf1561acb.tar.bz2 master-187ad058-051d02bb97b6e02a9795225867e5204cf1561acb.zip |
fix flash map driver for squashfs images for wrt54gs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2568 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/linux-2.6/patches/brcm/002-flash-map.patch')
-rw-r--r-- | target/linux/linux-2.6/patches/brcm/002-flash-map.patch | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/target/linux/linux-2.6/patches/brcm/002-flash-map.patch b/target/linux/linux-2.6/patches/brcm/002-flash-map.patch index 406255b642..d0917ba6ef 100644 --- a/target/linux/linux-2.6/patches/brcm/002-flash-map.patch +++ b/target/linux/linux-2.6/patches/brcm/002-flash-map.patch @@ -1,7 +1,7 @@ diff -Nur linux-2.6.12.5/drivers/mtd/maps/bcm47xx-flash.c linux-2.6.12.5-flash/drivers/mtd/maps/bcm47xx-flash.c --- linux-2.6.12.5/drivers/mtd/maps/bcm47xx-flash.c 1970-01-01 01:00:00.000000000 +0100 -+++ linux-2.6.12.5-flash/drivers/mtd/maps/bcm47xx-flash.c 2005-11-06 20:36:42.553198500 +0100 -@@ -0,0 +1,329 @@ ++++ linux-2.6.12.5-flash/drivers/mtd/maps/bcm47xx-flash.c 2005-11-29 12:50:51.416656000 +0100 +@@ -0,0 +1,333 @@ +/* + * Copyright (C) 2004 Florian Schirmer (jolt@tuxbox.org) + * Copyright (C) 2005 Waldemar Brodkorb <wbx@openwrt.org> @@ -222,7 +222,7 @@ diff -Nur linux-2.6.12.5/drivers/mtd/maps/bcm47xx-flash.c linux-2.6.12.5-flash/d + bcm947xx_parts[1].size = bcm947xx_parts[3].offset - + bcm947xx_parts[1].offset; + } else { -+ /* do not count the elf loader, which is on one sector */ ++ /* do not count the elf loader, which is on one block */ + bcm947xx_parts[1].offset = bcm947xx_parts[0].size + + bcm947xx_parts[3].size + mtd->erasesize; + bcm947xx_parts[1].size = size - @@ -248,6 +248,10 @@ diff -Nur linux-2.6.12.5/drivers/mtd/maps/bcm47xx-flash.c linux-2.6.12.5-flash/d + if (cfe_size_flag == 0) { + bcm947xx_parts[4].offset = bcm947xx_parts[2].offset + + bcm947xx_parts[2].size; ++ if ((bcm947xx_parts[4].offset % mtd->erasesize) > 0) { ++ bcm947xx_parts[4].offset += mtd->erasesize - ++ (bcm947xx_parts[4].offset % mtd->erasesize); ++ } + bcm947xx_parts[4].size = bcm947xx_parts[3].offset - + bcm947xx_parts[4].offset; + } else { |