diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-03-19 20:56:09 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-03-19 20:56:09 +0100 |
commit | 6a21d65d2840c58cfa7cd749a04669d8f7980646 (patch) | |
tree | 00b1aa153b69cda8cf9406c4700fd7730c34d3a5 /recipes/linux/linux-2.6.21/uImage-in-own-partition.patch | |
parent | dcfe7349b369a87881cf1fa43085d9e9c5609fcf (diff) | |
parent | 6f854d71c347475d53d5080a5490625345d95d12 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/linux/linux-2.6.21/uImage-in-own-partition.patch')
-rw-r--r-- | recipes/linux/linux-2.6.21/uImage-in-own-partition.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/recipes/linux/linux-2.6.21/uImage-in-own-partition.patch b/recipes/linux/linux-2.6.21/uImage-in-own-partition.patch new file mode 100644 index 0000000000..f9a9df46dc --- /dev/null +++ b/recipes/linux/linux-2.6.21/uImage-in-own-partition.patch @@ -0,0 +1,56 @@ +Index: linux-2.6.21gum/drivers/mtd/maps/gumstix-flash.c +=================================================================== +--- linux-2.6.21gum.orig/drivers/mtd/maps/gumstix-flash.c ++++ linux-2.6.21gum/drivers/mtd/maps/gumstix-flash.c +@@ -39,8 +39,12 @@ static struct mtd_partition gumstix_flas + .offset = FLASH_ADDR + },{ + .name = "RootFS", +- .size = MTDPART_SIZ_FULL, +- .offset = MTDPART_OFS_APPEND ++ .size = MTDPART_SIZ_REMAINDER, ++ .offset = MTDPART_OFS_NXTBLK ++ },{ ++ .name = "Kernel", ++ .size = 0x00100000, ++ .offset = MTDPART_OFS_NXTBLK + } + }; + +Index: linux-2.6.21gum/drivers/mtd/mtdpart.c +=================================================================== +--- linux-2.6.21gum.orig/drivers/mtd/mtdpart.c ++++ linux-2.6.21gum/drivers/mtd/mtdpart.c +@@ -321,7 +321,7 @@ int add_mtd_partitions(struct mtd_info * + { + struct mtd_part *slave; + u_int32_t cur_offset = 0; +- int i; ++ int i,j; + + printk (KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name); + +@@ -409,6 +409,11 @@ int add_mtd_partitions(struct mtd_info * + } + if (slave->mtd.size == MTDPART_SIZ_FULL) + slave->mtd.size = master->size - slave->offset; ++ if (slave->mtd.size == MTDPART_SIZ_REMAINDER) ++ { ++ slave->mtd.size = master->size - slave->offset; ++ for(j=i+1; j<nbparts; j++) slave->mtd.size -= parts[j].size; ++ } + cur_offset = slave->offset + slave->mtd.size; + + printk (KERN_NOTICE "0x%08x-0x%08x : \"%s\"\n", slave->offset, +Index: linux-2.6.21gum/include/linux/mtd/partitions.h +=================================================================== +--- linux-2.6.21gum.orig/include/linux/mtd/partitions.h ++++ linux-2.6.21gum/include/linux/mtd/partitions.h +@@ -47,6 +47,7 @@ struct mtd_partition { + + #define MTDPART_OFS_NXTBLK (-2) + #define MTDPART_OFS_APPEND (-1) ++#define MTDPART_SIZ_REMAINDER (-1) + #define MTDPART_SIZ_FULL (0) + + |