package/base-files: revise rc.local until we sync to upstream
[openwrt-working-2016/.git] / package / base-files / files / etc / rc.local
1 # Put your custom commands here that should be executed once
2 # the system init finished. By default this file does nothing.
3
4 sleep 5; killall netifd
5
6 ifconfig lo 127.0.0.1 netmask 255.0.0.0
7 ifconfig eth0 192.168.1.1
8
9 mount -o remount,rw /
10 /bin/sleep 1
11 /etc/init.d/dropbear restart
12
13 exit 0