mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 09:34:04 +02:00
11 lines
124 B
Plaintext
11 lines
124 B
Plaintext
|
#!/bin/sh
|
||
|
. /etc/functions.sh
|
||
|
case "$1" in
|
||
|
start|restart)
|
||
|
ifup lan
|
||
|
ifup wan
|
||
|
ifup wifi
|
||
|
wifi up
|
||
|
;;
|
||
|
esac
|