diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-08-22 20:09:13 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-08-22 20:09:13 +0000 |
commit | 8b3d95bba9b2bb0930ba2aa14b06aa2ec882b38a (patch) | |
tree | e58754ae9b82dcebb0afb4b347bfb17e3c130cef /target/linux/ar71xx/patches-3.3/611-TEW-712BR-support.patch | |
parent | 4073317695a728f8201512d24f72c5964779c27d (diff) | |
download | upstream-8b3d95bba9b2bb0930ba2aa14b06aa2ec882b38a.tar.gz upstream-8b3d95bba9b2bb0930ba2aa14b06aa2ec882b38a.tar.bz2 upstream-8b3d95bba9b2bb0930ba2aa14b06aa2ec882b38a.zip |
ar71xx: add support for the TRENDnet TEW-712BR board
SVN-Revision: 33231
Diffstat (limited to 'target/linux/ar71xx/patches-3.3/611-TEW-712BR-support.patch')
-rw-r--r-- | target/linux/ar71xx/patches-3.3/611-TEW-712BR-support.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-3.3/611-TEW-712BR-support.patch b/target/linux/ar71xx/patches-3.3/611-TEW-712BR-support.patch new file mode 100644 index 0000000000..994e1c3eb6 --- /dev/null +++ b/target/linux/ar71xx/patches-3.3/611-TEW-712BR-support.patch @@ -0,0 +1,39 @@ +--- a/arch/mips/ath79/Kconfig ++++ b/arch/mips/ath79/Kconfig +@@ -549,6 +549,16 @@ config ATH79_MACH_TEW_673GRU + select ATH79_DEV_USB + select ATH79_NVRAM + ++config ATH79_MACH_TEW_712BR ++ bool "TRENDnet TEW-712BR support" ++ select SOC_AR933X ++ select ATH79_DEV_ETH ++ select ATH79_DEV_GPIO_BUTTONS ++ select ATH79_DEV_LEDS_GPIO ++ select ATH79_DEV_M25P80 ++ select ATH79_DEV_WMAC ++ select ATH79_NVRAM ++ + config ATH79_MACH_UBNT + bool "Ubiquiti AR71xx based boards support" + select SOC_AR71XX +--- a/arch/mips/ath79/Makefile ++++ b/arch/mips/ath79/Makefile +@@ -67,6 +67,7 @@ obj-$(CONFIG_ATH79_MACH_RB750) += mach- + obj-$(CONFIG_ATH79_MACH_RW2458N) += mach-rw2458n.o + obj-$(CONFIG_ATH79_MACH_TEW_632BRP) += mach-tew-632brp.o + obj-$(CONFIG_ATH79_MACH_TEW_673GRU) += mach-tew-673gru.o ++obj-$(CONFIG_ATH79_MACH_TEW_712BR) += mach-tew-712br.o + obj-$(CONFIG_ATH79_MACH_TL_MR11U) += mach-tl-mr11u.o + obj-$(CONFIG_ATH79_MACH_TL_MR3020) += mach-tl-mr3020.o + obj-$(CONFIG_ATH79_MACH_TL_MR3X20) += mach-tl-mr3x20.o +--- a/arch/mips/ath79/machtypes.h ++++ b/arch/mips/ath79/machtypes.h +@@ -63,6 +63,7 @@ enum ath79_mach_type { + ATH79_MACH_RW2458N, /* Redwave RW2458N */ + ATH79_MACH_TEW_632BRP, /* TRENDnet TEW-632BRP */ + ATH79_MACH_TEW_673GRU, /* TRENDnet TEW-673GRU */ ++ ATH79_MACH_TEW_712BR, /* TRENDnet TEW-712BR */ + ATH79_MACH_TL_MR11U, /* TP-LINK TL-MR11U */ + ATH79_MACH_TL_MR3020, /* TP-LINK TL-MR3020 */ + ATH79_MACH_TL_MR3220, /* TP-LINK TL-MR3220 */ |