2
0
forked from Ivasoft/openwrt

add support for the archer c5

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>

SVN-Revision: 41814
This commit is contained in:
Imre Kaloz
2014-07-23 12:47:25 +00:00
parent 039fe23f8e
commit dc628f2e08
11 changed files with 44 additions and 4 deletions

View File

@@ -1,8 +1,9 @@
/*
* TP-LINK Archer C7/TL-WDR4900 v2 board support
* TP-LINK Archer C5/C7/TL-WDR4900 v2 board support
*
* Copyright (c) 2013 Gabor Juhos <juhosg@openwrt.org>
* Copyright (c) 2014 施康成 <tenninjas@tenninjas.ca>
* Copyright (c) 2014 Imre Kaloz <kaloz@openwrt.org>
*
* Based on the Qualcomm Atheros AP135/AP136 reference board support code
* Copyright (c) 2012 Qualcomm Atheros
@@ -239,6 +240,14 @@ static void __init common_setup(bool pcie_slot)
ath79_register_usb();
}
static void __init archer_c5_setup(void)
{
common_setup(true);
}
MIPS_MACHINE(ATH79_MACH_ARCHER_C5, "ARCHER-C5", "TP-LINK Archer C5",
archer_c5_setup);
static void __init archer_c7_setup(void)
{
common_setup(true);