|
|
@@ -179,6 +179,32 @@ Subject: [PATCH] kernel: add block fit partition parser
|
|
|
{0, NULL},
|
|
|
};
|
|
|
|
|
|
+--- a/drivers/mtd/mtd_blkdevs.c
|
|
|
++++ b/drivers/mtd/mtd_blkdevs.c
|
|
|
+@@ -359,7 +359,9 @@ int add_mtd_blktrans_dev(struct mtd_blkt
|
|
|
+ } else {
|
|
|
+ snprintf(gd->disk_name, sizeof(gd->disk_name),
|
|
|
+ "%s%d", tr->name, new->devnum);
|
|
|
+- gd->flags |= GENHD_FL_NO_PART;
|
|
|
++
|
|
|
++ if (!IS_ENABLED(CONFIG_FIT_PARTITION) || mtd_type_is_nand(new->mtd))
|
|
|
++ gd->flags |= GENHD_FL_NO_PART;
|
|
|
+ }
|
|
|
+
|
|
|
+ set_capacity(gd, ((u64)new->size * tr->blksize) >> 9);
|
|
|
+--- a/drivers/mtd/ubi/block.c
|
|
|
++++ b/drivers/mtd/ubi/block.c
|
|
|
+@@ -431,7 +431,9 @@ int ubiblock_create(struct ubi_volume_in
|
|
|
+ ret = -ENODEV;
|
|
|
+ goto out_cleanup_disk;
|
|
|
+ }
|
|
|
+- gd->flags |= GENHD_FL_NO_PART;
|
|
|
++ if (!IS_ENABLED(CONFIG_FIT_PARTITION))
|
|
|
++ gd->flags |= GENHD_FL_NO_PART;
|
|
|
++
|
|
|
+ gd->private_data = dev;
|
|
|
+ sprintf(gd->disk_name, "ubiblock%d_%d", dev->ubi_num, dev->vol_id);
|
|
|
+ set_capacity(gd, disk_capacity);
|
|
|
--- a/include/linux/msdos_partition.h
|
|
|
+++ b/include/linux/msdos_partition.h
|
|
|
@@ -31,6 +31,7 @@ enum msdos_sys_ind {
|