lantiq: fix logic error in dsl board.d code
authorJo-Philipp Wich <jow@openwrt.org>
Sun, 6 Dec 2015 08:41:22 +0000 (08:41 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sun, 6 Dec 2015 08:41:22 +0000 (08:41 +0000)
Starting with r47755 the pppoe wan interface section isn't any longer added to
the network config on firstboot, using the default configuration. Since the
commit message does not mention such a change, I assume that this wasn't
intentionally.

Signed-off-by: Mathias Kresin <openwrt@kresin.me>
SVN-Revision: 47793

target/linux/lantiq/base-files/etc/board.d/02_network

index 039f57b92d6741d4a8e49b620f94d404d911fed8..08a143f0b106f5f65ef6995e95d99fb0777e614c 100755 (executable)
@@ -130,7 +130,7 @@ VGV7510KW22)
 
 esac
 
 
 esac
 
-if [ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ]; then
+if [ -n "$(ls /lib/modules/`uname -r`/ltq_atm*)" ]; then
        ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload"
        ucidef_set_interface_wan "nas0" "pppoe"
 fi
        ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload"
        ucidef_set_interface_wan "nas0" "pppoe"
 fi