aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
diff options
context:
space:
mode:
authorKoen Vandeputte <koen.vandeputte@ncentric.com>2018-08-13 14:58:20 +0200
committerJohn Crispin <john@phrozen.org>2018-08-13 17:10:39 +0200
commitee9e0c1deb2e81144cf6110e3fcc075f1614ed62 (patch)
tree4bb2fba424d2bb9bc2552b4c1b78a3afc5e01b81 /target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
parent22b8237ba1acb90caaf867bf657f7ed7497bbeb6 (diff)
downloadupstream-ee9e0c1deb2e81144cf6110e3fcc075f1614ed62.tar.gz
upstream-ee9e0c1deb2e81144cf6110e3fcc075f1614ed62.tar.bz2
upstream-ee9e0c1deb2e81144cf6110e3fcc075f1614ed62.zip
ar7: remove linux 3.18 support
This target is on 4.9 currently. It seems the support for this old kernel never got dropped. Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch')
-rw-r--r--target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch b/target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
deleted file mode 100644
index dddf22106a..0000000000
--- a/target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/arch/mips/ar7/prom.c
-+++ b/arch/mips/ar7/prom.c
-@@ -70,6 +70,7 @@ struct psbl_rec {
- };
-
- static const char psp_env_version[] __initconst = "TIENV0.8";
-+static const char psp_env_version_ac49x[] __initconst = "MaxENV0.2";
-
- struct psp_env_chunk {
- u8 num;
-@@ -186,7 +187,8 @@ static void __init ar7_init_env(struct e
- struct psbl_rec *psbl = (struct psbl_rec *)(KSEG1ADDR(0x14000300));
- void *psp_env = (void *)KSEG1ADDR(psbl->env_base);
-
-- if (strcmp(psp_env, psp_env_version) == 0) {
-+ if (strcmp(psp_env, psp_env_version) == 0 ||
-+ strcmp(psp_env, psp_env_version_ac49x) == 0) {
- parse_psp_env(psp_env);
- } else {
- for (i = 0; i < MAX_ENTRY; i++, env++)