diff options
author | Daniel Golle <daniel@makrotopia.org> | 2018-01-24 01:27:51 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2018-02-06 03:00:33 +0100 |
commit | 32f120b783f1a0467993cdfd15efdef06cad56d8 (patch) | |
tree | b748cf490bee425e61c4962a0c190555e765555c /target/linux/ramips/base-files/etc | |
parent | a8b023272d334e47ee82449eadda01b96e9c2a90 (diff) | |
download | upstream-32f120b783f1a0467993cdfd15efdef06cad56d8.tar.gz upstream-32f120b783f1a0467993cdfd15efdef06cad56d8.tar.bz2 upstream-32f120b783f1a0467993cdfd15efdef06cad56d8.zip |
ramips: various fixes for zbt-we1226
Convert userspace code to use generic device-tree compatible board
detection method. Users of the existing code will have to use
sysupgrade -F once to switch to the new generic board naming.
Properly setup pinctrl fixing the switch port LEDs.
Fixes commit 9c4fe103cb (ramips: add support for ZBT-WE1226)
Reported-by: Mathias Kresin <dev@kresin.me>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target/linux/ramips/base-files/etc')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/01_leds | 2 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/02_network | 2 | ||||
-rw-r--r-- | target/linux/ramips/base-files/etc/diag.sh | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/01_leds b/target/linux/ramips/base-files/etc/board.d/01_leds index 37630cde66..110b588339 100755 --- a/target/linux/ramips/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/base-files/etc/board.d/01_leds @@ -491,7 +491,7 @@ zbt-we826-32M) set_wifi_led "zbt-we826:green:wifi" set_usb_led "zbt-we826:green:usb" ;; -zbt-we1226) +zbtlink,zbt-we1226) set_wifi_led "$boardname:green:wlan" ucidef_set_led_switch "lan1" "LAN1" "$boardname:green:lan1" "switch0" "0x01" ucidef_set_led_switch "lan2" "LAN2" "$boardname:green:lan2" "switch0" "0x02" diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network index 705532753d..d3855947db 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -350,7 +350,7 @@ ramips_setup_interfaces() ucidef_add_switch "switch0" \ "1:lan" "2:lan" "0:wan" "6@eth0" ;; - zbt-we1226|\ + zbtlink,zbt-we1226|\ y1) ucidef_add_switch "switch0" \ "0:lan:2" "1:lan:1" "4:wan" "6@eth0" diff --git a/target/linux/ramips/base-files/etc/diag.sh b/target/linux/ramips/base-files/etc/diag.sh index dadb1bb6f6..068df1df68 100644 --- a/target/linux/ramips/base-files/etc/diag.sh +++ b/target/linux/ramips/base-files/etc/diag.sh @@ -315,8 +315,8 @@ get_status_led() { zbt-we826-32M) status_led="zbt-we826:green:power" ;; - zbt-we1226) - status_led="zbt-we1226:green:wlan" + zbtlink,zbt-we1226) + status_led="$boardname:green:wlan" ;; zbt-wg3526-16M|\ zbt-wg3526-32M) |