diff options
author | Mathias Kresin <dev@kresin.me> | 2017-05-12 22:36:07 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-07-15 23:13:34 +0200 |
commit | f12a32630ff52b5e13397f64e9fb31708e97fb60 (patch) | |
tree | 46db1bb2606e05b40aaf2e43e7468531fa8df7b6 /target/linux/apm821xx/base-files/etc | |
parent | ced05ca9e092817f2f4d4fe25c5c56700838a3ad (diff) | |
download | mtk-20170518-f12a32630ff52b5e13397f64e9fb31708e97fb60.zip mtk-20170518-f12a32630ff52b5e13397f64e9fb31708e97fb60.tar.gz mtk-20170518-f12a32630ff52b5e13397f64e9fb31708e97fb60.tar.bz2 |
treewide: use the generic board_name function
Use the generic function instead ot the target specific ones.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/apm821xx/base-files/etc')
5 files changed, 6 insertions, 10 deletions
diff --git a/target/linux/apm821xx/base-files/etc/board.d/01_leds b/target/linux/apm821xx/base-files/etc/board.d/01_leds index ad9bef9c..3b5fb72 100755 --- a/target/linux/apm821xx/base-files/etc/board.d/01_leds +++ b/target/linux/apm821xx/base-files/etc/board.d/01_leds @@ -1,11 +1,10 @@ #!/bin/sh . /lib/functions/uci-defaults.sh -. /lib/apm821xx.sh board_config_update -board=$(apm821xx_board_name) +board=$(board_name) case "$board" in mr24) diff --git a/target/linux/apm821xx/base-files/etc/board.d/02_network b/target/linux/apm821xx/base-files/etc/board.d/02_network index 90a8c1a..03df7cb 100755 --- a/target/linux/apm821xx/base-files/etc/board.d/02_network +++ b/target/linux/apm821xx/base-files/etc/board.d/02_network @@ -2,11 +2,10 @@ . /lib/functions/system.sh . /lib/functions/uci-defaults.sh -. /lib/apm821xx.sh board_config_update -board=$(apm821xx_board_name) +board=$(board_name) case "$board" in mbl|\ diff --git a/target/linux/apm821xx/base-files/etc/diag.sh b/target/linux/apm821xx/base-files/etc/diag.sh index 3e480f1..eb9b04b 100755 --- a/target/linux/apm821xx/base-files/etc/diag.sh +++ b/target/linux/apm821xx/base-files/etc/diag.sh @@ -1,10 +1,10 @@ #!/bin/sh +. /lib/functions.sh . /lib/functions/leds.sh -. /lib/apm821xx.sh get_status_led() { - local board=$(apm821xx_board_name) + local board=$(board_name) case $board in mbl|\ diff --git a/target/linux/apm821xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom b/target/linux/apm821xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom index dfdc548..4a7e1c0 100644 --- a/target/linux/apm821xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom +++ b/target/linux/apm821xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom @@ -2,7 +2,6 @@ [ -e /lib/firmware/$FIRMWARE ] && exit 0 -. /lib/apm821xx.sh . /lib/functions.sh . /lib/functions/system.sh @@ -48,7 +47,7 @@ ath9k_patch_firmware_mac() { macaddr_2bin $mac | dd of=/lib/firmware/$FIRMWARE conv=notrunc bs=1 seek=2 count=6 } -board=$(apm821xx_board_name) +board=$(board_name) case "$FIRMWARE" in "pci_wmac0.eeprom") diff --git a/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 b/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 index 9956412..c011c85 100755 --- a/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 +++ b/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 @@ -1,9 +1,8 @@ #!/bin/sh . /lib/functions.sh -. /lib/apm821xx.sh -BOARD=$(apm821xx_board_name) +BOARD=$(board_name) if [ $BOARD == "wndr4700" ]; then case "$ACTION" in |