diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-20 19:11:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-20 19:11:48 +0000 |
commit | 35a17334eba70a7dc984f0ad2c78f3e676b0bfcb (patch) | |
tree | c47c91a31ab4b59858da83055e266cc64ffeae48 /target/linux | |
parent | c49bc556692dc87fa4ab4472661714d414734304 (diff) | |
download | upstream-35a17334eba70a7dc984f0ad2c78f3e676b0bfcb.tar.gz upstream-35a17334eba70a7dc984f0ad2c78f3e676b0bfcb.tar.bz2 upstream-35a17334eba70a7dc984f0ad2c78f3e676b0bfcb.zip |
oxnas: finally make board names consistent
r48337 unfortunately incorrectly changed the boardname of the stg212
into stg-212 which is not the name of the image of DTS file or
boardname using sysupgrade, which is 'stg212' and imho should stay
that way.
The changes r48337 made for pogoplug-pro and pogoplug-v3 were correct,
thus this commit only partially reverts r48337.
Also properly set default for USB LED while already at it.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 48398
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/oxnas/base-files/etc/board.d/01_leds | 4 | ||||
-rw-r--r-- | target/linux/oxnas/base-files/etc/diag.sh | 2 | ||||
-rwxr-xr-x | target/linux/oxnas/base-files/lib/oxnas.sh | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/oxnas/base-files/etc/board.d/01_leds b/target/linux/oxnas/base-files/etc/board.d/01_leds index f29ccff7aa..af565d7031 100755 --- a/target/linux/oxnas/base-files/etc/board.d/01_leds +++ b/target/linux/oxnas/base-files/etc/board.d/01_leds @@ -7,9 +7,9 @@ board=$(oxnas_board_name) board_config_update case $board in - stg-212) + stg212) ucidef_set_led_default "power" "power" "zyxel:blue:status" "1" - ucidef_set_led_usbdev "usb" "USB" "$1" "1-1" + ucidef_set_led_usbdev "usb" "USB" "zyxel:orange:copy" "1-1" ;; kd20) ucidef_set_led_default "power" "power" "kd20:blue:status" "1" diff --git a/target/linux/oxnas/base-files/etc/diag.sh b/target/linux/oxnas/base-files/etc/diag.sh index 8f484ae66e..5aec796cb2 100644 --- a/target/linux/oxnas/base-files/etc/diag.sh +++ b/target/linux/oxnas/base-files/etc/diag.sh @@ -6,7 +6,7 @@ get_status_led() { case $(oxnas_board_name) in - stg-212) + stg212) status_led="zyxel:blue:status" ;; kd20) diff --git a/target/linux/oxnas/base-files/lib/oxnas.sh b/target/linux/oxnas/base-files/lib/oxnas.sh index 2a07928f76..8ae5fbbeee 100755 --- a/target/linux/oxnas/base-files/lib/oxnas.sh +++ b/target/linux/oxnas/base-files/lib/oxnas.sh @@ -14,7 +14,7 @@ oxnas_board_detect() { case "$machine" in *"MitraStar Technology Corp. STG-212"*) - name="stg-212" + name="stg212" ;; *"Shuttle KD20"*) name="kd20" |