1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 15:25:20 +02:00

remove the data partition and have a big rootfs partition instead

This commit is contained in:
Mirko Vogt 2009-12-24 16:31:18 +01:00
parent ddd8424992
commit 3d0bd9af22

View File

@ -58,11 +58,7 @@ static struct mtd_partition qi_lb60_partitions_1gb[] = {
},
{ .name = "NAND ROOTFS partition",
.offset = 8 * 0x100000,
.size = 504 * 0x100000,
},
{ .name = "NAND DATA partition",
.offset = 512 * 0x100000,
.size = 512 * 0x100000,
.size = (504 + 512) * 0x100000,
},
};
@ -96,11 +92,7 @@ static struct mtd_partition qi_lb60_partitions_2gb[] = {
},
{ .name = "NAND ROOTFS partition",
.offset = 8 * 0x100000,
.size = 504 * 0x100000,
},
{ .name = "NAND DATA partition",
.offset = 512 * 0x100000,
.size = (512 + 1024) * 0x100000,
.size = (504 + 512 + 1024) * 0x100000,
},
};