summaryrefslogtreecommitdiffstats
path: root/package/swconfig
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-21 18:48:48 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-21 18:48:48 +0000
commitef0a8980a26b3eb90b98645083dfc7c65b7e881f (patch)
treeb1f9a7a7a9a8219b671876302e4b8b31257e06dc /package/swconfig
parent1e36c4b53ea0e143d53ecceeb75df2d1bdcf1317 (diff)
automatically configure switches when swconfig is installed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15328 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/swconfig')
-rw-r--r--package/swconfig/Makefile3
-rw-r--r--package/swconfig/files/switch.sh11
2 files changed, 13 insertions, 1 deletions
diff --git a/package/swconfig/Makefile b/package/swconfig/Makefile
index e18f55650..5959ef4c8 100644
--- a/package/swconfig/Makefile
+++ b/package/swconfig/Makefile
@@ -38,8 +38,9 @@ define Build/Compile
endef
define Package/swconfig/install
- $(INSTALL_DIR) $(1)/bin
+ $(INSTALL_DIR) $(1)/bin $(1)/lib/network
$(INSTALL_BIN) $(PKG_BUILD_DIR)/swconfig $(1)/bin/swconfig
+ $(INSTALL_DATA) ./files/switch.sh $(1)/lib/network/
endef
$(eval $(call BuildPackage,swconfig))
diff --git a/package/swconfig/files/switch.sh b/package/swconfig/files/switch.sh
new file mode 100644
index 000000000..d752b1383
--- /dev/null
+++ b/package/swconfig/files/switch.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+# Copyright (C) 2009 OpenWrt.org
+
+setup_switch_dev() {
+ swconfig dev "$1" load network
+}
+
+setup_switch() {
+ config_load network
+ config_foreach setup_switch_dev switch
+}