diff options
author | Pavel Kubelun <be.dissent@gmail.com> | 2016-06-21 11:55:00 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-06-22 19:32:06 +0200 |
commit | 823242185b56ea518568296f1a5834f736f12076 (patch) | |
tree | 098f7b028cc2733e1e4a5a3951b0a3e427935364 /target/linux/ipq806x/base-files | |
parent | 9bf3ddcb2ae9cf48fba1e392ff57727f22a036bd (diff) | |
download | upstream-823242185b56ea518568296f1a5834f736f12076.tar.gz upstream-823242185b56ea518568296f1a5834f736f12076.tar.bz2 upstream-823242185b56ea518568296f1a5834f736f12076.zip |
ipq806x: add initial support for Netgear R7800
Signed-off-by: Pavel Kubelun <be.dissent@gmail.com>
Diffstat (limited to 'target/linux/ipq806x/base-files')
5 files changed, 23 insertions, 10 deletions
diff --git a/target/linux/ipq806x/base-files/etc/board.d/01_leds b/target/linux/ipq806x/base-files/etc/board.d/01_leds index 568b4827b7..17f1a28abc 100755 --- a/target/linux/ipq806x/base-files/etc/board.d/01_leds +++ b/target/linux/ipq806x/base-files/etc/board.d/01_leds @@ -19,13 +19,14 @@ c2600) ucidef_set_led_default "general" "general" "ledgnr:blue" "1" ;; d7800 |\ -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 "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" +r7500 |\ +r7800) + ucidef_set_led_usbdev "usb1" "USB 1" "${board}:white:usb1" "1-1" + ucidef_set_led_usbdev "usb2" "USB 2" "${board}:white:usb3" "3-1" + ucidef_set_led_netdev "wan" "WAN" "${board}:white:wan" "eth0" + ucidef_set_led_ide "esata" "eSATA" "${board}:amber:esata" + ucidef_set_led_default "wps" "WPS" "${board}:white:wps" "0" + ucidef_set_led_default "rfkill" "rfkill" "${board}:white:rfkill" "0" ;; ea8500) ucidef_set_led_wlan "wifi" "WIFI" "ea8500:green:wifi" "phy0radio" diff --git a/target/linux/ipq806x/base-files/etc/board.d/02_network b/target/linux/ipq806x/base-files/etc/board.d/02_network index 67969669f1..16cc13cfc0 100755 --- a/target/linux/ipq806x/base-files/etc/board.d/02_network +++ b/target/linux/ipq806x/base-files/etc/board.d/02_network @@ -16,7 +16,8 @@ case "$board" in ap148 |\ c2600 |\ d7800 |\ -r7500) +r7500 |\ +r7800) ucidef_add_switch "switch0" \ "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0" ;; diff --git a/target/linux/ipq806x/base-files/etc/hotplug.d/firmware/11-ath10k-caldata b/target/linux/ipq806x/base-files/etc/hotplug.d/firmware/11-ath10k-caldata index 24da5500b5..a23dd80a00 100644 --- a/target/linux/ipq806x/base-files/etc/hotplug.d/firmware/11-ath10k-caldata +++ b/target/linux/ipq806x/base-files/etc/hotplug.d/firmware/11-ath10k-caldata @@ -56,6 +56,9 @@ case "$FIRMWARE" in hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr) ath10kcal_extract "art" 4096 12064 ;; + r7800) + ath10kcal_extract "art" 4096 12064 + ;; esac ;; "ath10k/cal-pci-0001:01:00.0.bin") @@ -68,6 +71,9 @@ case "$FIRMWARE" in hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr) ath10kcal_extract "art" 20480 12064 ;; + r7800) + ath10kcal_extract "art" 20480 12064 + ;; esac ;; *) diff --git a/target/linux/ipq806x/base-files/lib/ipq806x.sh b/target/linux/ipq806x/base-files/lib/ipq806x.sh index 8157e6afac..adac916f6b 100644 --- a/target/linux/ipq806x/base-files/lib/ipq806x.sh +++ b/target/linux/ipq806x/base-files/lib/ipq806x.sh @@ -32,6 +32,9 @@ ipq806x_board_detect() { *"Linksys EA8500"*) name="ea8500" ;; + *"R7800") + name="r7800" + ;; 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 2b6f61d7be..cfd7cd7ed6 100644 --- a/target/linux/ipq806x/base-files/lib/upgrade/platform.sh +++ b/target/linux/ipq806x/base-files/lib/upgrade/platform.sh @@ -9,7 +9,8 @@ platform_check_image() { ap148 |\ d7800 |\ ea8500 |\ - r7500) + r7500 |\ + r7800) nand_do_platform_check $board $1 return $?; ;; @@ -32,7 +33,8 @@ platform_pre_upgrade() { case "$board" in ap148 |\ d7800 |\ - r7500) + r7500 |\ + r7800) nand_do_upgrade "$1" ;; ea8500) |