forked from Ivasoft/openwrt
add more base-files
SVN-Revision: 14653
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
config interface loopback
|
||||
option ifname lo
|
||||
option proto static
|
||||
option ipaddr 127.0.0.1
|
||||
option netmask 255.0.0.0
|
||||
|
||||
config interface lan
|
||||
option ifname eth0
|
||||
option type bridge
|
||||
option proto static
|
||||
option ipaddr 192.168.1.1
|
||||
option netmask 255.255.255.0
|
||||
|
||||
config interface wan
|
||||
option ifname eth1
|
||||
option proto dhcp
|
||||
20
target/linux/ar71xx/base-files/etc/init.d/defconfig
Executable file
20
target/linux/ar71xx/base-files/etc/init.d/defconfig
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
#
|
||||
# Copyright (C) 2009 OpenWrt.org
|
||||
#
|
||||
|
||||
. /lib/ar71xx.sh
|
||||
|
||||
START=05
|
||||
|
||||
start() {
|
||||
local board=$(ar71xx_board_name)
|
||||
|
||||
[ ! -d /etc/config/defaults/$board ] && board="generic"
|
||||
|
||||
for f in $( ls /etc/config/defaults/$board ); do
|
||||
if [ ! -e /etc/config/$f ]; then
|
||||
cp /etc/config/defaults/$board/$f /etc/config/
|
||||
fi
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user