diff options
author | Mathias Kresin <dev@kresin.me> | 2017-02-17 22:04:12 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-02-18 16:51:31 +0100 |
commit | 044a4eafd5e1a06eedee700bb4191f02674a9da1 (patch) | |
tree | 9acd65b61b83e3e2c7fa4c2dc6232de7062c075d /target/linux/lantiq/base-files/etc | |
parent | cfd16ecc4824d3c29f92827fc04f40baa30f61a5 (diff) | |
download | upstream-044a4eafd5e1a06eedee700bb4191f02674a9da1.tar.gz upstream-044a4eafd5e1a06eedee700bb4191f02674a9da1.tar.bz2 upstream-044a4eafd5e1a06eedee700bb4191f02674a9da1.zip |
lantiq: introduce lantiq_is_vdsl_system
Move the code to check if the current system is a system with vdsl
support to a dedicate function to make it reusable.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/lantiq/base-files/etc')
-rwxr-xr-x | target/linux/lantiq/base-files/etc/board.d/02_network | 2 |
1 files changed, 1 insertions, 1 deletions
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 6ab5cb979e..41d6b7fab3 100755 --- a/target/linux/lantiq/base-files/etc/board.d/02_network +++ b/target/linux/lantiq/base-files/etc/board.d/02_network @@ -168,7 +168,7 @@ if [ -n "$(ls /lib/modules/`uname -r`/ltq_atm*)" ]; then ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload" fi -if grep -qE "system type.*: (VR9|xRX200)" /proc/cpuinfo; then +if lantiq_is_vdsl_system; then interface_wan="ptm0" ucidef_add_vdsl_modem "$annex" "av" "ptm" else |