From: Felix Fietkau Date: Fri, 17 Mar 2017 15:21:30 +0000 (+0100) Subject: lantiq: remove lantiq_board_name, use the generic function instead X-Git-Tag: v17.01.5~257 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=8be5b12ea10687455d61a3d98ad5ff41e751af12 lantiq: remove lantiq_board_name, use the generic function instead Signed-off-by: Felix Fietkau (cherry picked from commit 7e798dab56546d6f8e2fe0f913ff41e8f010af51) --- diff --git a/package/boot/uboot-envtools/files/lantiq b/package/boot/uboot-envtools/files/lantiq index 185f2fe77e..d1a6668e84 100644 --- a/package/boot/uboot-envtools/files/lantiq +++ b/package/boot/uboot-envtools/files/lantiq @@ -7,11 +7,10 @@ touch /etc/config/ubootenv -. /lib/functions/lantiq.sh . /lib/uboot-envtools.sh . /lib/functions.sh -board=$(lantiq_board_name) +board=$(board_name) case "$board" in BTHOMEHUBV2B) diff --git a/target/linux/lantiq/base-files/etc/board.d/01_leds b/target/linux/lantiq/base-files/etc/board.d/01_leds index 9d28495eca..60047af290 100755 --- a/target/linux/lantiq/base-files/etc/board.d/01_leds +++ b/target/linux/lantiq/base-files/etc/board.d/01_leds @@ -32,7 +32,7 @@ led_internet="$(lantiq_get_dt_led internet)" ucidef_set_led_netdev "internet" "internet" "$led_internet" "$interface" } -board=$(lantiq_board_name) +board=$(board_name) case "$board" in ARV4525PW) diff --git a/target/linux/lantiq/base-files/etc/board.d/02_network b/target/linux/lantiq/base-files/etc/board.d/02_network index de55be8efb..8755604254 100755 --- a/target/linux/lantiq/base-files/etc/board.d/02_network +++ b/target/linux/lantiq/base-files/etc/board.d/02_network @@ -18,7 +18,7 @@ lan_mac="" wan_mac="" interface_wan="" -board=$(lantiq_board_name) +board=$(board_name) case "$board" in ACMP252|GIGASX76X) diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/11-ath10k-caldata b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/11-ath10k-caldata index 2511ed6014..1c2b8456fc 100644 --- a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/11-ath10k-caldata +++ b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/11-ath10k-caldata @@ -5,7 +5,6 @@ . /lib/functions.sh . /lib/functions/system.sh -. /lib/functions/lantiq.sh . /lib/upgrade/nand.sh ath10k_caldata_die() { @@ -37,7 +36,7 @@ ath10k_caldata_set_macaddr() { case "$FIRMWARE" in "ath10k/cal-pci-0000:02:00.0.bin") - board=$(lantiq_board_name) + board=$(board_name) case $board in BTHOMEHUBV5A) ath10k_caldata_extract_ubi "caldata" 20480 2116 diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/12-ath9k-eeprom b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/12-ath9k-eeprom index 26b5551754..7144423d43 100644 --- a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/12-ath9k-eeprom +++ b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/12-ath9k-eeprom @@ -5,7 +5,6 @@ . /lib/functions.sh . /lib/functions/system.sh -. /lib/functions/lantiq.sh . /lib/upgrade/nand.sh # xor multiple hex values of the same length @@ -114,7 +113,7 @@ case "$FIRMWARE" in "ath9k-eeprom-pci-0000:00:0e.0.bin" | \ "ath9k-eeprom-pci-0000:01:00.0.bin" | \ "ath9k-eeprom-pci-0000:02:00.0.bin") - board=$(lantiq_board_name) + board=$(board_name) case "$board" in ARV7518PW) diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq.sh b/target/linux/lantiq/base-files/lib/functions/lantiq.sh index 89f194b39e..5d760d1d30 100644 --- a/target/linux/lantiq/base-files/lib/functions/lantiq.sh +++ b/target/linux/lantiq/base-files/lib/functions/lantiq.sh @@ -9,15 +9,6 @@ lantiq_board_model() { echo "$model" } -lantiq_board_name() { - local name - - [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name) - [ -z "$name" ] && name="unknown" - - echo "$name" -} - lantiq_get_dt_led() { local label local ledpath diff --git a/target/linux/lantiq/base-files/lib/upgrade/platform.sh b/target/linux/lantiq/base-files/lib/upgrade/platform.sh index d4db8d2bf7..9158fa742f 100755 --- a/target/linux/lantiq/base-files/lib/upgrade/platform.sh +++ b/target/linux/lantiq/base-files/lib/upgrade/platform.sh @@ -1,5 +1,3 @@ -. /lib/functions/lantiq.sh - PART_NAME=firmware REQUIRE_IMAGE_METADATA=1 @@ -8,7 +6,7 @@ platform_check_image() { } platform_pre_upgrade() { - local board=$(lantiq_board_name) + local board=$(board_name) case "$board" in BTHOMEHUBV2B|BTHOMEHUBV3A|BTHOMEHUBV5A|P2812HNUF* )