diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-10-27 07:54:47 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-10-27 07:54:47 +0000 |
commit | 8750c52ceb824c0a4368459e9093921b7c72abd1 (patch) | |
tree | 2467468c717d32f2bc964409b911d4083dca9f1e | |
parent | eecefb6e0cfb8b71fa3c1f35b6d1f12510fd4277 (diff) | |
download | upstream-8750c52ceb824c0a4368459e9093921b7c72abd1.tar.gz upstream-8750c52ceb824c0a4368459e9093921b7c72abd1.tar.bz2 upstream-8750c52ceb824c0a4368459e9093921b7c72abd1.zip |
ar71xx/all0258n: fix partition layout
A miscalculation in the original patch makes OpenWrt destroy the failsafe image.
Signed-off-by: Daniel Golle <dgolle@allnet.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28615 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-all0258n.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-all0258n.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-all0258n.c index 7c383f5b7a..8b50a542c2 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-all0258n.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-all0258n.c @@ -66,7 +66,7 @@ static struct mtd_partition all0258n_partitions[] = { }, { .name = "firmware", .offset = 0x050000, - .size = 0x630000, + .size = 0x620000, }, { .name = "art", .offset = 0x7F0000, |