8b4df1efd5
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
19 lines
254 B
Bash
19 lines
254 B
Bash
. /lib/ipq806x.sh
|
|
|
|
PART_NAME=firmware
|
|
|
|
platform_check_image() {
|
|
local board=$(ipq806x_board_name)
|
|
|
|
case "$board" in
|
|
AP148 |\
|
|
r7500)
|
|
nand_do_platform_check $board $1
|
|
return $?;
|
|
;;
|
|
*)
|
|
return 1;
|
|
esac
|
|
}
|
|
|
|
# use default for platform_do_upgrade()
|