X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=target%2Flinux%2Fgeneric%2Fpatches-3.10%2F490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch;fp=target%2Flinux%2Fgeneric%2Fpatches-3.10%2F490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch;h=68e98ca8c1b98aafac2de43cd5b7c0aedd74f892;hp=b0b367eb77594746c9092c8a22c37ff0fa56527e;hb=15c2d0fa406637eb74c24c5e3ae92df72c32d755;hpb=da746543d798123b03e1ec42e45ed07b831d659d diff --git a/target/linux/generic/patches-3.10/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch b/target/linux/generic/patches-3.10/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch index b0b367eb77..68e98ca8c1 100644 --- a/target/linux/generic/patches-3.10/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch +++ b/target/linux/generic/patches-3.10/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch @@ -11,7 +11,7 @@ Signed-off-by: Daniel Golle --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c -@@ -1207,6 +1207,36 @@ static struct mtd_info * __init open_mtd +@@ -1207,6 +1207,47 @@ return mtd; } @@ -29,6 +29,17 @@ Signed-off-by: Daniel Golle + mtd = open_mtd_device("data"); + + if (!IS_ERR(mtd)) { ++ size_t len; ++ char magic[6]; ++ ++ /* check for a tar file magic */ ++ err = mtd_read(mtd, 261, 6, &len, (void *) magic); ++ if (!err && len == 6 && !strncmp(magic, "ustar", 5)) { ++ ubi_err("cannot attach mtd%d as there is a valid tar magic", mtd->index); ++ put_mtd_device(mtd); ++ return; ++ } ++ + /* auto-add only media types where UBI makes sense */ + if (mtd->type == MTD_NANDFLASH || + mtd->type == MTD_DATAFLASH || @@ -48,7 +59,7 @@ Signed-off-by: Daniel Golle static int __init ubi_init(void) { int err, i, k; -@@ -1290,6 +1320,12 @@ static int __init ubi_init(void) +@@ -1290,6 +1331,12 @@ } }