2
0
forked from Ivasoft/openwrt

move lots of kernel related packages to the new system/ folder

SVN-Revision: 33830
This commit is contained in:
John Crispin
2012-10-17 22:45:58 +00:00
parent 965710d3e1
commit a34499e095
171 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/sh
# Copyright (C) 2009 OpenWrt.org
setup_switch_dev() {
config_get name "$1" name
name="${name:-$1}"
[ -d "/sys/class/net/$name" ] && ifconfig "$name" up
swconfig dev "$name" load network
}
setup_switch() {
config_load network
config_foreach setup_switch_dev switch
}