From 19fdaabfac4b4601969300e9dd93898b36840a41 Mon Sep 17 00:00:00 2001 From: juhosg Date: Tue, 2 Dec 2008 21:17:31 +0000 Subject: [ar71xx] update mips_machine stuff git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13488 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../ar71xx/patches-2.6.26/001-ar71xx_core.patch | 21 --------------------- .../900-mips_multi_machine_support.patch | 12 +++++------- 2 files changed, 5 insertions(+), 28 deletions(-) (limited to 'target/linux/ar71xx/patches-2.6.26') diff --git a/target/linux/ar71xx/patches-2.6.26/001-ar71xx_core.patch b/target/linux/ar71xx/patches-2.6.26/001-ar71xx_core.patch index c5871c8c5..0ead6d29b 100644 --- a/target/linux/ar71xx/patches-2.6.26/001-ar71xx_core.patch +++ b/target/linux/ar71xx/patches-2.6.26/001-ar71xx_core.patch @@ -14,27 +14,6 @@ # temporary until string.h is fixed cflags-y += -ffreestanding ---- a/include/asm-mips/bootinfo.h -+++ b/include/asm-mips/bootinfo.h -@@ -79,6 +79,18 @@ - #define MACH_LASAT_200 1 /* Masquerade PRO/SP200 */ - - /* -+ * Valid machtype for Atheros AR71xx based boards -+ */ -+#define MACH_AR71XX_GENERIC 0 -+#define MACH_AR71XX_WP543 1 /* Compex WP543 */ -+#define MACH_AR71XX_RB_411 2 /* MikroTik RouterBOARD 411/411A/411AH */ -+#define MACH_AR71XX_RB_433 3 /* MikroTik RouterBOARD 433/433AH */ -+#define MACH_AR71XX_RB_450 4 /* MikroTik RouterBOARD 450 */ -+#define MACH_AR71XX_RB_493 5 /* Mikrotik RouterBOARD 493/493AH */ -+#define MACH_AR71XX_AW_NR580 6 /* AzureWave AW-NR580 */ -+#define MACH_AR71XX_AP83 7 /* Atheros AP83 */ -+ -+/* - * Valid machtype for group NEC EMMA2RH - */ - #define MACH_NEC_MARKEINS 0 /* NEC EMMA2RH Mark-eins */ --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -21,6 +21,24 @@ choice diff --git a/target/linux/ar71xx/patches-2.6.26/900-mips_multi_machine_support.patch b/target/linux/ar71xx/patches-2.6.26/900-mips_multi_machine_support.patch index abcdfb581..331ae4c27 100644 --- a/target/linux/ar71xx/patches-2.6.26/900-mips_multi_machine_support.patch +++ b/target/linux/ar71xx/patches-2.6.26/900-mips_multi_machine_support.patch @@ -1,6 +1,6 @@ --- /dev/null +++ b/include/asm-mips/mips_machine.h -@@ -0,0 +1,49 @@ +@@ -0,0 +1,47 @@ +/* + * Copyright (C) 2008 Gabor Juhos + * @@ -16,8 +16,6 @@ +#include +#include + -+#include -+ +#define MIPS_MACHINE_NAME_LEN 64 + +struct mips_machine { @@ -28,7 +26,7 @@ +}; + +void mips_machine_register(struct mips_machine *) __init; -+void mips_machine_setup(void) __init; ++void mips_machine_setup(unsigned long machtype) __init; + +extern unsigned char mips_machine_name[MIPS_MACHINE_NAME_LEN]; + @@ -90,14 +88,14 @@ + list_add_tail(&mach->list, &mips_machines); +} + -+void __init mips_machine_setup(void) ++void __init mips_machine_setup(unsigned long machtype) +{ + struct mips_machine *mach; + -+ mach = mips_machine_find(mips_machtype); ++ mach = mips_machine_find(machtype); + if (!mach) { + printk(KERN_ALERT "MIPS: no machine registered for " -+ "machtype %lu\n", mips_machtype); ++ "machtype %lu\n", machtype); + return; + } + -- cgit v1.2.3