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/ar71xx/base-files/etc/board.d | |
parent | ced05ca9e092817f2f4d4fe25c5c56700838a3ad (diff) | |
download | upstream-f12a32630ff52b5e13397f64e9fb31708e97fb60.tar.gz upstream-f12a32630ff52b5e13397f64e9fb31708e97fb60.tar.bz2 upstream-f12a32630ff52b5e13397f64e9fb31708e97fb60.zip |
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/ar71xx/base-files/etc/board.d')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/board.d/01_leds | 3 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/board.d/02_network | 3 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/target/linux/ar71xx/base-files/etc/board.d/01_leds b/target/linux/ar71xx/base-files/etc/board.d/01_leds index e5afd50e7d..8eaa892b4a 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/01_leds +++ b/target/linux/ar71xx/base-files/etc/board.d/01_leds @@ -4,11 +4,10 @@ # . /lib/functions/uci-defaults.sh -. /lib/ar71xx.sh board_config_update -board=$(ar71xx_board_name) +board=$(board_name) case "$board" in a40) diff --git a/target/linux/ar71xx/base-files/etc/board.d/02_network b/target/linux/ar71xx/base-files/etc/board.d/02_network index 7f2012855c..b2126c0c94 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/02_network +++ b/target/linux/ar71xx/base-files/etc/board.d/02_network @@ -5,7 +5,6 @@ . /lib/functions/system.sh . /lib/functions/uci-defaults.sh -. /lib/ar71xx.sh ar71xx_setup_interfaces() { @@ -545,7 +544,7 @@ ar71xx_setup_macs() } board_config_update -board=$(ar71xx_board_name) +board=$(board_name) ar71xx_setup_interfaces $board ar71xx_setup_macs $board board_config_flush diff --git a/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches b/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches index 2b18741cd9..add7e47e85 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches +++ b/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches @@ -4,11 +4,10 @@ # . /lib/functions/uci-defaults.sh -. /lib/ar71xx.sh board_config_update -board=$(ar71xx_board_name) +board=$(board_name) case "$board" in nanostation-m) |