diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-05-13 20:12:07 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-05-13 20:12:07 +0000 |
commit | 2e7a1d95f7579c206f870b91fb5e7a771d6ad304 (patch) | |
tree | fd73cf0d4147ef7f7e70edac6d2ffac8ece86be1 /target | |
parent | 9ecc257d2fdf17971f645e042a67aa0bdedb3e01 (diff) | |
download | upstream-2e7a1d95f7579c206f870b91fb5e7a771d6ad304.tar.gz upstream-2e7a1d95f7579c206f870b91fb5e7a771d6ad304.tar.bz2 upstream-2e7a1d95f7579c206f870b91fb5e7a771d6ad304.zip |
reorder mtd partitions on the WRT400N
SVN-Revision: 15829
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c index 4040a652da..0298b1a6bf 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c @@ -46,10 +46,6 @@ static struct mtd_partition wrt400n_partitions[] = { } , { .name = "linux", .offset = 0x040000, - .size = 0x770000, - } , { - .name = "kernel", - .offset = 0x040000, .size = 0x140000, } , { .name = "rootfs", @@ -75,6 +71,10 @@ static struct mtd_partition wrt400n_partitions[] = { .offset = 0x7f0000, .size = 0x010000, .mask_flags = MTD_WRITEABLE, + } , { + .name = "firmware", + .offset = 0x040000, + .size = 0x770000, } }; #endif /* CONFIG_MTD_PARTITIONS */ |