mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add better default config for ar7, add br2684ctl init script, add a missing setting for pppoa
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7024 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -31,6 +31,8 @@ endef
|
||||
MAKE_FLAGS += CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_LDFLAGS)"
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/br2684ctl $(1)/etc/init.d/
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
26
package/br2684ctl/files/br2684ctl
Executable file
26
package/br2684ctl/files/br2684ctl
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
stop() {
|
||||
killall br2684ctl 2>/dev/null >/dev/null
|
||||
sleep 1
|
||||
rmmod br2684
|
||||
}
|
||||
|
||||
start_daemon() {
|
||||
local cfg="$1"
|
||||
config_get atmdev "$cfg" atmdev
|
||||
config_get unit "$cfg" unit
|
||||
config_get vpi "$cfg" vpi
|
||||
config_get vci "$cfg" vci
|
||||
config_get encaps "$cfg" encaps
|
||||
case "$encaps" in
|
||||
1|vc) encaps=1;;
|
||||
*) encaps=0;;
|
||||
esac
|
||||
br2684ctl -b -c "$unit" -e "$encaps" -a "${atmdev:+$atmdev.}${vpi:-8}.${vci:-35}"
|
||||
}
|
||||
|
||||
start() {
|
||||
insmod br2684 >/dev/null 2>/dev/null
|
||||
config_load network
|
||||
config_foreach start_daemon atm-bridge
|
||||
}
|
||||
Reference in New Issue
Block a user