forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46796 3c298f89-4303-0410-b956-a3cf2f4a3e73
- Loading branch information
1 parent
74a1d6e
commit 897157d
Showing
8 changed files
with
866 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright (C) 2015 OpenWrt.org | ||
# | ||
|
||
. /lib/functions/uci-defaults.sh | ||
. /lib/ipq806x.sh | ||
|
||
board=$(ipq806x_board_name) | ||
|
||
case "$board" in | ||
r7500) | ||
ucidef_set_led_usbdev "usb1" "USB 1" "r7500:white:usb1" "1-1" | ||
ucidef_set_led_usbdev "usb2" "USB 2" "r7500:white:usb3" "3-1" | ||
ucidef_set_led_netdev "wan" "WAN" "r7500:white:wan" "eth0" | ||
ucidef_set_led_ide_disk "esata" "eSATA" "r7500:amber:esata" | ||
ucidef_set_led_default "wps" "WPS" "r7500:white:wps" "0" | ||
ucidef_set_led_default "rfkill" "rfkill" "r7500:white:rfkill" "0" | ||
;; | ||
*) | ||
;; | ||
esac | ||
|
||
ucidef_commit_leds | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.