diff options
author | Manish Patel | 2015-02-17 19:29:01 +0530 |
---|---|---|
committer | Srikant Patnaik | 2015-02-17 19:34:51 +0530 |
commit | 7138f822150c08f05d963710b3e30f527864e3ac (patch) | |
tree | f1b74d038b83b95dab5c271b3bd3e0e8b235c288 | |
parent | aa260eac36acaa7e9c5b4e5ac5d816c9046e46df (diff) | |
download | FOSSEE-netbook-kernel-source-7138f822150c08f05d963710b3e30f527864e3ac.tar.gz FOSSEE-netbook-kernel-source-7138f822150c08f05d963710b3e30f527864e3ac.tar.bz2 FOSSEE-netbook-kernel-source-7138f822150c08f05d963710b3e30f527864e3ac.zip |
Change NAND partition schema for ubuntu-rootfs
Signed-off-by: Manish Patel <manish.patel@volansystech.com>
-rwxr-xr-x | drivers/mtd/nand/wmt_nand.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mtd/nand/wmt_nand.c b/drivers/mtd/nand/wmt_nand.c index d7ef14f5..e57b33f5 100755 --- a/drivers/mtd/nand/wmt_nand.c +++ b/drivers/mtd/nand/wmt_nand.c @@ -416,17 +416,17 @@ struct mtd_partition nand_partitions[] = { .size = 0x1000000, }, { - .name = "swap", + .name = "ubuntu-rootfs", .offset = MTDPART_OFS_APPEND, - .size = 0x19000000, + .size = 0x1DEC00000, }, { - .name = "reserved", + .name = "swap", .offset = MTDPART_OFS_APPEND, - .size = 0x6400000, + .size = 0x19000000, }, { - .name = "ubuntu-rootfs", + .name = "reserved", .offset = MTDPART_OFS_APPEND, .size = MTDPART_SIZ_FULL, } |