diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-09-16 17:26:25 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-09-16 17:26:25 +0200 |
commit | 79d5a4a7dc9648e2d55407ca11daa9a4342abe72 (patch) | |
tree | 412e19f7903b1933d19d27b2e139e2524de39f9e /target/linux/patches/3.16.43/mtd-rootfs.patch | |
parent | 1863be7c63a2ac49bcb447c52ae6b9428a8ed1cd (diff) |
linux: bump all lts / stable to latest
Diffstat (limited to 'target/linux/patches/3.16.43/mtd-rootfs.patch')
-rw-r--r-- | target/linux/patches/3.16.43/mtd-rootfs.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/patches/3.16.43/mtd-rootfs.patch b/target/linux/patches/3.16.43/mtd-rootfs.patch deleted file mode 100644 index 775d5fc80..000000000 --- a/target/linux/patches/3.16.43/mtd-rootfs.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -Nur linux-3.5.orig//drivers/mtd/mtdpart.c linux-3.5/drivers/mtd/mtdpart.c ---- linux-3.5.orig//drivers/mtd/mtdpart.c 2012-07-21 22:58:29.000000000 +0200 -+++ linux-3.5/drivers/mtd/mtdpart.c 2012-07-31 23:59:07.000000000 +0200 -@@ -30,6 +30,7 @@ - #include <linux/mtd/mtd.h> - #include <linux/mtd/partitions.h> - #include <linux/err.h> -+#include <linux/root_dev.h> - - #include "mtdcore.h" - -@@ -637,6 +638,14 @@ - if (IS_ERR(slave)) - return PTR_ERR(slave); - -+ if (strcmp(parts[i].name, "rootfs") == 0) { -+ if (ROOT_DEV == 0) { -+ printk(KERN_NOTICE "mtd: partition \"rootfs\" " -+ "set to be root filesystem\n"); -+ ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, i); -+ } -+ } -+ - mutex_lock(&mtd_partitions_mutex); - list_add(&slave->list, &mtd_partitions); - mutex_unlock(&mtd_partitions_mutex); |