Hi Titus, So actually the partition map is list way up in my second response just in case this doesn't look good. Here's the original partition map: struct mtd_partition da850_evm_nandflash_partition[] = { { // partition 0 .name = "u-boot env", .offset = 0, .size = SZ_128K, //.mask_flags = MTD_WRITEABLE, .mask_flags = 0, }, { // partition 1 .name = "UBL", .offset = MTDPART_OFS_APPEND, .size = SZ_128K, // .mask_flags = MTD_WRITEABLE, .mask_flags = 0, }, { // partition 2 .name = "u-boot", .offset = 0x80000, .size = 4 * SZ_128K, .mask_flags = 0, }, { // partition 3 .name = "kernel", .offset = 0x200000, .size = SZ_2M, // SZ_4M, .mask_flags = 0, }, { // partition 4 .name = "filesystem", .offset = MTDPART_OFS_APPEND, .size = SZ_16M, // MTDPART_SIZ_FULL, .mask_flags = 0, }, { // partition 5 .name = "ap4_fs", .offset = MTDPART_OFS_APPEND, .size = SZ_16M, .mask_flags = 0, }, { // partition 6 .name = "kernel2", .offset = MTDPART_OFS_APPEND, .size = SZ_2M, .mask_flags = 0, }, { // partition 7 .name = "filesystem_large", .offset = MTDPART_OFS_APPEND, .size = MTDPART_SIZ_FULL, .mask_flags = 0, }, }; Thanks again, Bill
↧