1 --- a/drivers/mtd/Kconfig
2 +++ b/drivers/mtd/Kconfig
4 depends on MTD_PARTITIONS
7 +config MTD_UIMAGE_SPLIT
8 + bool "Automatically split 'linux' partition into 'kernel' and 'rootfs'"
11 config MTD_REDBOOT_PARTS
12 tristate "RedBoot partition table parsing"
13 depends on MTD_PARTITIONS
14 --- a/drivers/mtd/mtdpart.c
15 +++ b/drivers/mtd/mtdpart.c
18 #endif /* CONFIG_MTD_ROOTFS_SPLIT */
21 +#ifdef CONFIG_MTD_UIMAGE_SPLIT
22 +static unsigned long find_uimage_size(struct mtd_info *mtd,
23 + unsigned long offset)
25 +#define UBOOT_MAGIC 0x56190527
26 + unsigned long magic = 0;
31 + ret = mtd->read(mtd, offset, 4, &len, (void *)&magic);
32 + if (ret || len != sizeof(magic))
35 + if (le32_to_cpu(magic) != UBOOT_MAGIC)
38 + ret = mtd->read(mtd, offset + 12, 4, &len, (void *)&temp);
39 + if (ret || len != sizeof(temp))
45 +static int detect_squashfs_partition(struct mtd_info *mtd, unsigned long offset)
51 + ret = mtd->read(mtd, offset, 4, &len, (void *)&temp);
52 + if (ret || len != sizeof(temp))
55 + return le32_to_cpu(temp) == SQUASHFS_MAGIC;
58 +static int split_uimage(struct mtd_info *mtd,
59 + const struct mtd_partition *part)
61 + static struct mtd_partition split_partitions[] = {
73 + split_partitions[0].size = find_uimage_size(mtd, part->offset);
74 + if (!split_partitions[0].size) {
75 + printk(KERN_NOTICE "no uImage found in linux partition\n");
79 + if (!detect_squashfs_partition(mtd,
81 + + split_partitions[0].size)) {
82 + split_partitions[0].size &= ~(mtd->erasesize - 1);
83 + split_partitions[0].size += mtd->erasesize;
86 + split_partitions[0].offset = part->offset;
87 + split_partitions[1].offset = part->offset + split_partitions[0].size;
88 + split_partitions[1].size = part->size - split_partitions[0].size;
90 + add_mtd_partitions(mtd, split_partitions, 2);
97 * This function, given a master MTD object and a partition table, creates
98 * and registers slave MTD objects which are bound to the master according to
103 +#ifdef CONFIG_MTD_UIMAGE_SPLIT
104 + if (!strcmp(parts[i].name, "linux")) {
105 + ret = split_uimage(master, &parts[i]);
108 + printk(KERN_WARNING
109 + "Can't split linux partition\n");
114 if (!strcmp(parts[i].name, "rootfs")) {
115 #ifdef CONFIG_MTD_ROOTFS_ROOT_DEV