summaryrefslogtreecommitdiff
path: root/target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-02-09 12:12:30 +0000
committerJohn Crispin <john@openwrt.org>2015-02-09 12:12:30 +0000
commit9f0f80faacff55e9e909b87328fc0def14290562 (patch)
treecc7d2b74e9645ac723ef45db443ff6b4b0aeda14 /target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
parent5c8b8b36e1812feb055fc8574fe03156fa1efcb3 (diff)
downloadmtk-20170518-9f0f80faacff55e9e909b87328fc0def14290562.zip
mtk-20170518-9f0f80faacff55e9e909b87328fc0def14290562.tar.gz
mtk-20170518-9f0f80faacff55e9e909b87328fc0def14290562.tar.bz2
ar7: add 3.18 support
this is only compile tested Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44344
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, 20 insertions, 0 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
new file mode 100644
index 0000000..dddf221
--- /dev/null
+++ b/target/linux/ar7/patches-3.18/310-ac49x-prom-support.patch
@@ -0,0 +1,20 @@
+--- 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++)