1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ramips: use lowercase partiion names on the WCR150GN board

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27387 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2011-07-03 15:01:53 +00:00
parent f1d6b8e6a9
commit cf68680797
2 changed files with 5 additions and 5 deletions

View File

@@ -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,
}, {