diff options
author | Jonas Gorski <jogo@openwrt.org> | 2015-09-04 14:46:06 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2015-09-04 14:46:06 +0000 |
commit | 8b4df1efd58c692168b8ea7e664bed4dc3fd600b (patch) | |
tree | 96e0b8feb6d22eceb4e0db127cf8d1257752e06b /target/linux/ipq806x/base-files/lib | |
parent | 6ec4c4b6b958b3262be96c35e811b8b833a59850 (diff) | |
download | upstream-8b4df1efd58c692168b8ea7e664bed4dc3fd600b.tar.gz upstream-8b4df1efd58c692168b8ea7e664bed4dc3fd600b.tar.bz2 upstream-8b4df1efd58c692168b8ea7e664bed4dc3fd600b.zip |
ipq806x: add support for Netgear Nighthawk X4 R7500
Add support for the Netgear Nighthawk X4 R7500 and build
appropariate sysupgrade and factory images.
Known issues:
* 5 GHz wifi not working - there is no quantenna driver
* One of the USB ports is not working
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 46796
Diffstat (limited to 'target/linux/ipq806x/base-files/lib')
-rw-r--r-- | target/linux/ipq806x/base-files/lib/ipq806x.sh | 3 | ||||
-rw-r--r-- | target/linux/ipq806x/base-files/lib/upgrade/platform.sh | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/ipq806x/base-files/lib/ipq806x.sh b/target/linux/ipq806x/base-files/lib/ipq806x.sh index 2790f3f386..5b27bde758 100644 --- a/target/linux/ipq806x/base-files/lib/ipq806x.sh +++ b/target/linux/ipq806x/base-files/lib/ipq806x.sh @@ -20,6 +20,9 @@ ipq806x_board_detect() { *"DB149") name="db149" ;; + *"R7500") + name="r7500" + ;; esac [ -z "$name" ] && name="unknown" diff --git a/target/linux/ipq806x/base-files/lib/upgrade/platform.sh b/target/linux/ipq806x/base-files/lib/upgrade/platform.sh index e834ead0fd..75a01b7d77 100644 --- a/target/linux/ipq806x/base-files/lib/upgrade/platform.sh +++ b/target/linux/ipq806x/base-files/lib/upgrade/platform.sh @@ -6,7 +6,8 @@ platform_check_image() { local board=$(ipq806x_board_name) case "$board" in - AP148) + AP148 |\ + r7500) nand_do_platform_check $board $1 return $?; ;; |