summaryrefslogtreecommitdiff
path: root/target/linux/patches/4.1.23/mtd-rootfs.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-05-16 18:13:38 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-05-16 18:13:38 +0200
commit362bd31a15a6fb071368de1aad45a65c7c149775 (patch)
tree4e982755361f6ec4af0a9ffe3b67f6134d774282 /target/linux/patches/4.1.23/mtd-rootfs.patch
parentd808fb76b6f7d29dc539b094bc8502f368743ef7 (diff)
bump linux kernel versions
Diffstat (limited to 'target/linux/patches/4.1.23/mtd-rootfs.patch')
-rw-r--r--target/linux/patches/4.1.23/mtd-rootfs.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/patches/4.1.23/mtd-rootfs.patch b/target/linux/patches/4.1.23/mtd-rootfs.patch
deleted file mode 100644
index 5f6d82b5c..000000000
--- a/target/linux/patches/4.1.23/mtd-rootfs.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -Nur linux-4.1.15.orig/drivers/mtd/mtdpart.c linux-4.1.15/drivers/mtd/mtdpart.c
---- linux-4.1.15.orig/drivers/mtd/mtdpart.c 2015-12-15 06:24:51.000000000 +0100
-+++ linux-4.1.15/drivers/mtd/mtdpart.c 2015-12-26 21:02:02.766905805 +0100
-@@ -30,6 +30,7 @@
- #include <linux/mtd/mtd.h>
- #include <linux/mtd/partitions.h>
- #include <linux/err.h>
-+#include <linux/root_dev.h>
- #include <linux/kconfig.h>
-
- #include "mtdcore.h"
-@@ -667,6 +668,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);