lantiq: xway: rename nas0/ptm0 to dsl0
This change makes it possible to configure the wan/dsl ppp interface settings independantly from the used TC-Layer (ATM/PTM). By using dsl0 as interface name as for the xrx200 we can get rid of a few conditionals which were introduced because of the different default TC-Layer in xway and xrx200. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
parent
1470c79ceb
commit
b02b7004f8
5 changed files with 13 additions and 12 deletions
|
@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
|
|||
|
||||
PKG_NAME:=dsl_cpe_control_danube
|
||||
PKG_VERSION:=3.24.4.4
|
||||
PKG_RELEASE:=3
|
||||
PKG_RELEASE:=4
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/dsl_cpe_control-$(PKG_VERSION)
|
||||
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources/
|
||||
|
@ -35,7 +35,7 @@ define Package/ltq-adsl-app
|
|||
CATEGORY:=Network
|
||||
TITLE:=Lantiq DSL userland tool
|
||||
URL:=http://www.lantiq.com/
|
||||
DEPENDS:=@(TARGET_lantiq_xway||TARGET_lantiq_xway_legacy||TARGET_lantiq_ase) +libpthread
|
||||
DEPENDS:=@(TARGET_lantiq_xway||TARGET_lantiq_xway_legacy||TARGET_lantiq_ase) +libpthread +ip
|
||||
MENU:=1
|
||||
endef
|
||||
|
||||
|
@ -76,10 +76,11 @@ CONFIGURE_ARGS += \
|
|||
TARGET_CFLAGS += -I$(LINUX_DIR)/include
|
||||
|
||||
define Package/ltq-adsl-app/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d $(1)/sbin $(1)/etc/hotplug.d/dsl
|
||||
$(INSTALL_DIR) $(1)/etc/init.d $(1)/sbin $(1)/etc/hotplug.d/dsl $(1)/etc/hotplug.d/net
|
||||
$(INSTALL_BIN) ./files/dsl_control $(1)/etc/init.d/
|
||||
$(INSTALL_BIN) ./files/10_atm.sh $(1)/etc/hotplug.d/dsl
|
||||
$(INSTALL_BIN) ./files/10_ptm.sh $(1)/etc/hotplug.d/dsl
|
||||
$(INSTALL_BIN) ./files/10-adsl_rename $(1)/etc/hotplug.d/net
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dsl_cpe_control $(1)/sbin
|
||||
endef
|
||||
|
||||
|
|
7
package/network/config/ltq-adsl-app/files/10-adsl_rename
Normal file
7
package/network/config/ltq-adsl-app/files/10-adsl_rename
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$ACTION" = add ]; then
|
||||
[ "$DEVICENAME" = "nas0" ] ||[ "$DEVICENAME" = "ptm0" ] || exit
|
||||
|
||||
ip link set $DEVICENAME name dsl0
|
||||
fi
|
|
@ -20,15 +20,12 @@ led_usb2="$(lantiq_get_dt_led usb2)"
|
|||
|
||||
led_dsl="$(lantiq_get_dt_led dsl)"
|
||||
[ -n "$led_dsl" ] && {
|
||||
interface="nas0"
|
||||
lantiq_is_vdsl_system && interface="dsl0"
|
||||
|
||||
led_internet="$(lantiq_get_dt_led internet)"
|
||||
if [ -n "$led_internet" ]; then
|
||||
ucidef_set_led_default "dsl" "dsl" "$led_dsl" "0"
|
||||
ucidef_set_led_netdev "internet" "internet" "$led_internet" "pppoe-wan"
|
||||
else
|
||||
ucidef_set_led_netdev "dsl" "dsl" "$led_dsl" "$interface"
|
||||
ucidef_set_led_netdev "dsl" "dsl" "$led_dsl" "dsl0"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ encaps="llc"
|
|||
payload="bridged"
|
||||
lan_mac=""
|
||||
wan_mac=""
|
||||
interface_wan=""
|
||||
interface_wan="dsl0"
|
||||
|
||||
board=$(board_name)
|
||||
|
||||
|
@ -230,10 +230,8 @@ ls /lib/modules/$(uname -r)/ltq_atm* 1> /dev/null 2>&1 && \
|
|||
ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload"
|
||||
|
||||
if lantiq_is_vdsl_system; then
|
||||
interface_wan="dsl0"
|
||||
ucidef_add_vdsl_modem "$annex" "$tone" "$xfer_mode"
|
||||
else
|
||||
interface_wan="nas0"
|
||||
ucidef_add_adsl_modem "$annex" "/lib/firmware/adsl.bin"
|
||||
fi
|
||||
|
||||
|
|
|
@ -40,8 +40,6 @@ migrate_led_xdsl_ifname()
|
|||
rename_xdsl_ifname system "$1" dev
|
||||
}
|
||||
|
||||
lantiq_is_vdsl_system || exit 0
|
||||
|
||||
config_load network
|
||||
config_foreach migrate_network_xdsl_ifname
|
||||
|
||||
|
|
Loading…
Reference in a new issue