summaryrefslogtreecommitdiff
path: root/target/linux/patches
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-12-27 00:20:20 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-12-27 00:20:32 +0100
commit01e0761fc16f3f3de993ec7ab4fd952c7fa2f6f3 (patch)
tree8e0b4fb3154804f970ddfb51c22829722e81d90c /target/linux/patches
parent7ad2f049e353c9027be9267a9ba3dbe870901101 (diff)
various microblaze related fixes add back some missing patches
Diffstat (limited to 'target/linux/patches')
-rw-r--r--target/linux/patches/4.1.15/j2-core.patch (renamed from target/linux/patches/4.1.13/j2-core.patch)0
-rw-r--r--target/linux/patches/4.1.15/mtd-rootfs.patch26
-rw-r--r--target/linux/patches/4.1.15/use-libgcc-for-sh.patch (renamed from target/linux/patches/4.1.13/use-libgcc-for-sh.patch)0
3 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/patches/4.1.13/j2-core.patch b/target/linux/patches/4.1.15/j2-core.patch
index 38136df2c..38136df2c 100644
--- a/target/linux/patches/4.1.13/j2-core.patch
+++ b/target/linux/patches/4.1.15/j2-core.patch
diff --git a/target/linux/patches/4.1.15/mtd-rootfs.patch b/target/linux/patches/4.1.15/mtd-rootfs.patch
new file mode 100644
index 000000000..5f6d82b5c
--- /dev/null
+++ b/target/linux/patches/4.1.15/mtd-rootfs.patch
@@ -0,0 +1,26 @@
+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);
diff --git a/target/linux/patches/4.1.13/use-libgcc-for-sh.patch b/target/linux/patches/4.1.15/use-libgcc-for-sh.patch
index 6420219b0..6420219b0 100644
--- a/target/linux/patches/4.1.13/use-libgcc-for-sh.patch
+++ b/target/linux/patches/4.1.15/use-libgcc-for-sh.patch