mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-06 03:05:48 +00:00
12 lines
180 B
Bash
12 lines
180 B
Bash
#!/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
|
|
}
|