[openwrt/openwrt] ath79: base-files: fix broken network config

LEDE Commits lede-commits at lists.infradead.org
Sun Jul 4 23:53:55 PDT 2021


ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/bb2a9af6f1f3a03617002d0b9ba361f97d68dc02

commit bb2a9af6f1f3a03617002d0b9ba361f97d68dc02
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Mon Jul 5 08:45:18 2021 +0200

    ath79: base-files: fix broken network config
    
    Fix bash syntax error introduced in commit cce2e8db564b ("ath79: add
    support for TP-Link TL-WR941HP v1") which resulted in broken default
    network configuration.
    
     In target/linux/ath79/generic/base-files/etc/board.d/02_network line 402:
            tplink,tl-wr842n-v2)\
            ^-- SC1073: Couldn't parse this case item. Fix to allow more checks.
    
    References: https://gitlab.com/ynezz/openwrt-device-runtime-testing/-/jobs/1398837698/artifacts/file/cram-result-archer-c7-v5-initramfs.txt
    Fixes: cce2e8db564b ("ath79: add support for TP-Link TL-WR941HP v1")
    Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 target/linux/ath79/generic/base-files/etc/board.d/02_network | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/linux/ath79/generic/base-files/etc/board.d/02_network b/target/linux/ath79/generic/base-files/etc/board.d/02_network
index 8f547ba5ce..025d55fec0 100644
--- a/target/linux/ath79/generic/base-files/etc/board.d/02_network
+++ b/target/linux/ath79/generic/base-files/etc/board.d/02_network
@@ -399,7 +399,7 @@ ath79_setup_interfaces()
 		ucidef_add_switch "switch0" \
 			"0 at eth0" "2:lan:3" "3:lan:2" "4:lan:1" "5:lan:4"
 		;;
-	tplink,tl-wr842n-v2)\
+	tplink,tl-wr842n-v2|\
 	tplink,tl-wr941hp-v1)
 		ucidef_set_interface_wan "eth1"
 		ucidef_add_switch "switch0" \



More information about the lede-commits mailing list