diff options
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 ad9bef9c09..3b5fb721ae 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 90a8c1a8d2..03df7cb49f 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 3e480f1fe4..eb9b04b525 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 dfdc548d63..4a7e1c0b19 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 995641237b..c011c85753 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 |