aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-06-05 18:26:45 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-06-05 18:26:45 +0000
commite69562eb2892d3be7397a002fdbb74d71e66c673 (patch)
treecb6c14c106855126a7d1f07bfb6303bc8686fd8e
parentbfa2da2042a3df0b1559ee3a885dd930267d6ff1 (diff)
downloadmaster-187ad058-e69562eb2892d3be7397a002fdbb74d71e66c673.tar.gz
master-187ad058-e69562eb2892d3be7397a002fdbb74d71e66c673.tar.bz2
master-187ad058-e69562eb2892d3be7397a002fdbb74d71e66c673.zip
generic: update mips multimachine patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21681 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/generic-2.6/patches-2.6.32/020-mips_multi_machine_support.patch31
-rw-r--r--target/linux/generic-2.6/patches-2.6.33/020-mips_multi_machine_support.patch31
-rw-r--r--target/linux/generic-2.6/patches-2.6.34/020-mips_multi_machine_support.patch31
3 files changed, 51 insertions, 42 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.32/020-mips_multi_machine_support.patch b/target/linux/generic-2.6/patches-2.6.32/020-mips_multi_machine_support.patch
index 2230523c92..d73b2d1523 100644
--- a/target/linux/generic-2.6/patches-2.6.32/020-mips_multi_machine_support.patch
+++ b/target/linux/generic-2.6/patches-2.6.32/020-mips_multi_machine_support.patch
@@ -57,7 +57,7 @@
+#endif /* __ASM_MIPS_MACHINE_H */
--- /dev/null
+++ b/arch/mips/kernel/mips_machine.c
-@@ -0,0 +1,83 @@
+@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
+ *
@@ -109,29 +109,32 @@
+ continue;
+
+ if (strcmp(mach->mach_id, id) == 0) {
-+ mips_machine = mach;
-+ break;
++ mips_machtype = mach->mach_type;
++ return 0;
+ }
+ }
+
-+ if (!mips_machine) {
-+ pr_err("MIPS: no machine found for id '%s', supported machines:\n",
-+ id);
-+ pr_err("%32s %s\n", "id", "name");
-+ for_each_machine(mach)
-+ pr_err("%32s %s\n", mach->mach_id, mach->mach_name);
-+ return 1;
-+ }
-+
-+ mips_machtype = mips_machine->mach_type;
++ pr_err("MIPS: no machine found for id '%s', supported machines:\n", id);
++ pr_err("%-24s : %s\n", "id", "name");
++ for_each_machine(mach)
++ pr_err("%-24s : %s\n", mach->mach_id, mach->mach_name);
+
-+ return 0;
++ return 1;
+}
+
+__setup("machtype=", mips_machtype_setup);
+
+__init void mips_machine_setup(void)
+{
++ struct mips_machine *mach;
++
++ for_each_machine(mach) {
++ if (mips_machtype == mach->mach_type) {
++ mips_machine = mach;
++ break;
++ }
++ }
++
+ if (!mips_machine)
+ return;
+
diff --git a/target/linux/generic-2.6/patches-2.6.33/020-mips_multi_machine_support.patch b/target/linux/generic-2.6/patches-2.6.33/020-mips_multi_machine_support.patch
index 1f25b17efe..111d69b4d9 100644
--- a/target/linux/generic-2.6/patches-2.6.33/020-mips_multi_machine_support.patch
+++ b/target/linux/generic-2.6/patches-2.6.33/020-mips_multi_machine_support.patch
@@ -57,7 +57,7 @@
+#endif /* __ASM_MIPS_MACHINE_H */
--- /dev/null
+++ b/arch/mips/kernel/mips_machine.c
-@@ -0,0 +1,83 @@
+@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
+ *
@@ -109,29 +109,32 @@
+ continue;
+
+ if (strcmp(mach->mach_id, id) == 0) {
-+ mips_machine = mach;
-+ break;
++ mips_machtype = mach->mach_type;
++ return 0;
+ }
+ }
+
-+ if (!mips_machine) {
-+ pr_err("MIPS: no machine found for id '%s', supported machines:\n",
-+ id);
-+ pr_err("%32s %s\n", "id", "name");
-+ for_each_machine(mach)
-+ pr_err("%32s %s\n", mach->mach_id, mach->mach_name);
-+ return 1;
-+ }
-+
-+ mips_machtype = mips_machine->mach_type;
++ pr_err("MIPS: no machine found for id '%s', supported machines:\n", id);
++ pr_err("%-24s : %s\n", "id", "name");
++ for_each_machine(mach)
++ pr_err("%-24s : %s\n", mach->mach_id, mach->mach_name);
+
-+ return 0;
++ return 1;
+}
+
+__setup("machtype=", mips_machtype_setup);
+
+__init void mips_machine_setup(void)
+{
++ struct mips_machine *mach;
++
++ for_each_machine(mach) {
++ if (mips_machtype == mach->mach_type) {
++ mips_machine = mach;
++ break;
++ }
++ }
++
+ if (!mips_machine)
+ return;
+
diff --git a/target/linux/generic-2.6/patches-2.6.34/020-mips_multi_machine_support.patch b/target/linux/generic-2.6/patches-2.6.34/020-mips_multi_machine_support.patch
index 03c5b158f9..ca0c10b20d 100644
--- a/target/linux/generic-2.6/patches-2.6.34/020-mips_multi_machine_support.patch
+++ b/target/linux/generic-2.6/patches-2.6.34/020-mips_multi_machine_support.patch
@@ -57,7 +57,7 @@
+#endif /* __ASM_MIPS_MACHINE_H */
--- /dev/null
+++ b/arch/mips/kernel/mips_machine.c
-@@ -0,0 +1,83 @@
+@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
+ *
@@ -109,29 +109,32 @@
+ continue;
+
+ if (strcmp(mach->mach_id, id) == 0) {
-+ mips_machine = mach;
-+ break;
++ mips_machtype = mach->mach_type;
++ return 0;
+ }
+ }
+
-+ if (!mips_machine) {
-+ pr_err("MIPS: no machine found for id '%s', supported machines:\n",
-+ id);
-+ pr_err("%32s %s\n", "id", "name");
-+ for_each_machine(mach)
-+ pr_err("%32s %s\n", mach->mach_id, mach->mach_name);
-+ return 1;
-+ }
-+
-+ mips_machtype = mips_machine->mach_type;
++ pr_err("MIPS: no machine found for id '%s', supported machines:\n", id);
++ pr_err("%-24s : %s\n", "id", "name");
++ for_each_machine(mach)
++ pr_err("%-24s : %s\n", mach->mach_id, mach->mach_name);
+
-+ return 0;
++ return 1;
+}
+
+__setup("machtype=", mips_machtype_setup);
+
+__init void mips_machine_setup(void)
+{
++ struct mips_machine *mach;
++
++ for_each_machine(mach) {
++ if (mips_machtype == mach->mach_type) {
++ mips_machine = mach;
++ break;
++ }
++ }
++
+ if (!mips_machine)
+ return;
+