--- zzzz-none-000/linux-4.4.271/drivers/mtd/ubi/build.c 2021-06-03 06:22:09.000000000 +0000 +++ hawkeye-5590-750/linux-4.4.271/drivers/mtd/ubi/build.c 2023-04-19 10:22:29.000000000 +0000 @@ -801,7 +801,8 @@ * volume table, and 'ubi_resize_volume()' will propagate this change * to the flash. */ - ubi->vtbl[vol_id].flags &= ~UBI_VTBL_AUTORESIZE_FLG; + ubi->vtbl[vol_id].flags &= ~(UBI_VTBL_AUTORESIZE_FLG | + UBI_VTBL_AUTORESIZE_FLG_LINUX); if (ubi->avail_pebs == 0) { struct ubi_vtbl_record vtbl_rec; @@ -1217,6 +1218,49 @@ return mtd; } +/* + * This function tries attaching mtd partitions named either "ubi" or "data" + * during boot. + */ +static void __init ubi_auto_attach(void) +{ + int err; + struct mtd_info *mtd; + + /* try attaching mtd device named "ubi" or "data" */ + mtd = open_mtd_device("ubi"); + if (IS_ERR(mtd)) + mtd = open_mtd_device("data"); + + if (!IS_ERR(mtd)) { + size_t len; + char magic[4]; + + /* check for a valid ubi magic */ + err = mtd_read(mtd, 0, 4, &len, (void *) magic); + if (!err && len == 4 && strncmp(magic, "UBI#", 4)) { + pr_err("UBI error: no valid UBI magic found inside mtd%d", mtd->index); + put_mtd_device(mtd); + return; + } + + /* auto-add only media types where UBI makes sense */ + if (mtd->type == MTD_NANDFLASH || + mtd->type == MTD_NORFLASH || + mtd->type == MTD_DATAFLASH || + mtd->type == MTD_MLCNANDFLASH) { + mutex_lock(&ubi_devices_mutex); + pr_notice("UBI: auto-attach mtd%d", mtd->index); + err = ubi_attach_mtd_dev(mtd, UBI_DEV_NUM_AUTO, 0, 0); + mutex_unlock(&ubi_devices_mutex); + if (err < 0) { + pr_err("UBI error: cannot attach mtd%d", mtd->index); + put_mtd_device(mtd); + } + } + } +} + static int __init ubi_init(void) { int err, i, k; @@ -1300,6 +1344,12 @@ } } + /* auto-attach mtd devices only if built-in to the kernel and no ubi.mtd + * parameter was given */ + if (config_enabled(CONFIG_MTD_ROOTFS_ROOT_DEV) && + !ubi_is_module() && !mtd_devs) + ubi_auto_attach(); + err = ubiblock_init(); if (err) { pr_err("UBI error: block: cannot initialize, error %d", err); @@ -1394,7 +1444,11 @@ * This function returns zero in case of success and a negative error code in * case of error. */ +#if ! defined(CONFIG_AVM_ENHANCED) static int __init ubi_mtd_param_parse(const char *val, struct kernel_param *kp) +#else +int __init ubi_mtd_param_parse(const char *val, struct kernel_param *kp) +#endif { int i, len; struct mtd_dev_param *p;