diff options
author | Daniel Golle <daniel@makrotopia.org> | 2018-11-04 18:22:33 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2018-11-04 21:43:36 +0100 |
commit | 4f017c871d794636c43a33c13410bbb7060a5b5b (patch) | |
tree | 936d2c7cfd1e42323e0c5600aa0be9812bd4f677 /target/linux/oxnas/base-files/etc/board.d | |
parent | 900005ee75754ba62972ed8da6eba2d6b47e1b7f (diff) | |
download | upstream-4f017c871d794636c43a33c13410bbb7060a5b5b.tar.gz upstream-4f017c871d794636c43a33c13410bbb7060a5b5b.tar.bz2 upstream-4f017c871d794636c43a33c13410bbb7060a5b5b.zip |
oxnas: switch to generic board detect
remove /lib/oxnas.sh platform-specific board-detection and use
generic which is based on device-tree compatible node instead.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target/linux/oxnas/base-files/etc/board.d')
-rwxr-xr-x | target/linux/oxnas/base-files/etc/board.d/01_leds | 8 | ||||
-rwxr-xr-x | target/linux/oxnas/base-files/etc/board.d/02_network | 27 |
2 files changed, 29 insertions, 6 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 5d665093f6..66a24e108d 100755 --- a/target/linux/oxnas/base-files/etc/board.d/01_leds +++ b/target/linux/oxnas/base-files/etc/board.d/01_leds @@ -6,17 +6,17 @@ board=$(board_name) board_config_update case $board in - akitio) + "akitio,myloud") ucidef_set_led_default "status" "status" "akitio:red:status" "0" ;; - stg212) + "mitrastar,stg-212") ucidef_set_led_default "power" "power" "zyxel:blue:status" "1" ucidef_set_led_usbdev "usb" "USB" "zyxel:orange:copy" "1-1" ;; - kd20) + "shuttle,kd20") ucidef_set_led_default "power" "power" "kd20:blue:status" "1" ;; - pogoplug-pro | pogoplug-v3) + "cloudengines,pogoplug"*) ucidef_set_led_default "power" "power" "pogoplug:blue:internal" "1" ;; diff --git a/target/linux/oxnas/base-files/etc/board.d/02_network b/target/linux/oxnas/base-files/etc/board.d/02_network index 7ecaed51bf..7b657cd108 100755 --- a/target/linux/oxnas/base-files/etc/board.d/02_network +++ b/target/linux/oxnas/base-files/etc/board.d/02_network @@ -2,14 +2,37 @@ . /lib/functions/uci-defaults.sh . /lib/functions/system.sh -. /lib/oxnas.sh board_config_update lan_mac="" +bootloader_cmdline_var() { + local param + local pval + for arg in $(cat /proc/device-tree/chosen/bootloader-args); do + param="$(echo $arg | cut -d'=' -f 1)" + pval="$(echo $arg | cut -d'=' -f 2-)" + + if [ "$param" = "$1" ]; then + echo "$pval" + fi + done +} + +legacy_boot_mac_adr() { + local macstr + local oIFS + macstr="$(bootloader_cmdline_var mac_adr)" + oIFS="$IFS" + IFS="," + set -- $macstr + printf "%02x:%02x:%02x:%02x:%02x:%02x" $1 $2 $3 $4 $5 $6 + IFS="$oIFS" +} + case "$(board_name)" in - kd20) + "shuttle,kd20") lan_mac="$(legacy_boot_mac_adr)" ;; esac |