diff options
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in | 12 | ||||
-rw-r--r-- | target/config/Config.in.tools | 4 |
2 files changed, 14 insertions, 2 deletions
diff --git a/target/config/Config.in b/target/config/Config.in index cfa53894a..4082b9049 100644 --- a/target/config/Config.in +++ b/target/config/Config.in @@ -80,6 +80,18 @@ config ADK_TARGET_ABI_N64 endchoice +choice +prompt "Broadcom BCM47xx Model" +depends on ADK_TARGET_SYSTEM_BROADCOM_BCM47XX + +config ADK_TARGET_BROADCOM_MODEL_LINKSYS_WRT54G + boolean "Linksys WRT54g" + +config ADK_TARGET_BROADCOM_MODEL_LINKSYS_WRT54GS + boolean "Linksys WRT54gs" + +endchoice + if ADK_LINUX_NATIVE source "target/config/Config.in.native" endif diff --git a/target/config/Config.in.tools b/target/config/Config.in.tools index 8ed343d2a..31246458d 100644 --- a/target/config/Config.in.tools +++ b/target/config/Config.in.tools @@ -1,5 +1,5 @@ config ADK_TOOLS_ADDPATTERN_ARGS string - default "-p W54G -v v4.20.6" if ADK_TARGET_SYSTEM_LINKSYS_WRT54G - default "-p W54S -v v4.70.6" if ADK_TARGET_SYSTEM_LINKSYS_WRT54GS + default "-p W54G -v v4.20.6" if ADK_TARGET_BROADCOM_MODEL_LINKSYS_WRT54G + default "-p W54S -v v4.70.6" if ADK_TARGET_BROADCOM_MODEL_LINKSYS_WRT54GS default "" |