1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 05:58:53 +02:00

lantiq: match default xdsl mode and default wan interface

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

SVN-Revision: 48047
This commit is contained in:
John Crispin 2016-01-01 21:19:32 +00:00
parent a9896bf106
commit 6f95d749d6

@ -16,6 +16,7 @@ encaps="llc"
payload="bridged"
lan_mac=""
wan_mac=""
interface_wan=""
board=$(lantiq_board_name)
@ -132,15 +133,18 @@ esac
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
if [ -n "$(grep "system type.*: VR9" /proc/cpuinfo)" ]; then
interface_wan="ptm0"
ucidef_add_vdsl_modem "$annex" "/lib/firmware/vdsl.bin" "av" "ptm"
else
interface_wan="nas0"
ucidef_add_adsl_modem "$annex" "/lib/firmware/adsl.bin"
fi
ucidef_set_interface_wan "$interface_wan" "pppoe"
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan "$lan_mac"
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan "$wan_mac"