diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-07-03 15:01:53 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-07-03 15:01:53 +0000 |
commit | 575a5286c89bf5ca0d3f0c66b51aab8566ff8212 (patch) | |
tree | 190dec530c9bd339104c83cafc4e478d3fe08920 /target/linux/ramips/files/arch/mips | |
parent | 31facf0b75459b68a862104779c0e189b17b7b9a (diff) | |
download | upstream-575a5286c89bf5ca0d3f0c66b51aab8566ff8212.tar.gz upstream-575a5286c89bf5ca0d3f0c66b51aab8566ff8212.tar.bz2 upstream-575a5286c89bf5ca0d3f0c66b51aab8566ff8212.zip |
ramips: use lowercase partiion names on the WCR150GN board
SVN-Revision: 27387
Diffstat (limited to 'target/linux/ramips/files/arch/mips')
-rw-r--r-- | target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wcr150gn.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wcr150gn.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wcr150gn.c index 2358a5cb44..babaa710a5 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wcr150gn.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wcr150gn.c @@ -25,20 +25,20 @@ #ifdef CONFIG_MTD_PARTITIONS static struct mtd_partition wcr150gn_partitions[] = { { - .name = "Bootloader", + .name = "bootloader", .offset = 0, .size = 0x030000, .mask_flags = MTD_WRITEABLE, }, { - .name = "Config", + .name = "config", .offset = 0x030000, .size = 0x040000, }, { - .name = "Factory", + .name = "factory", .offset = 0x040000, .size = 0x050000, }, { - .name = "Kernel", + .name = "kernel", .offset = 0x050000, .size = 0x120000, }, { |