mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2025-12-29 15:29:14 +00:00
13 lines
203 B
Bash
13 lines
203 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
setup_switch_dev() {
|
|
ifconfig "$1" 0.0.0.0
|
|
swconfig dev "$1" load network
|
|
}
|
|
|
|
setup_switch() {
|
|
config_load network
|
|
config_foreach setup_switch_dev switch
|
|
}
|