b1b318750a
Port the mechanism for different default configurations from ar71xx and use the old configuration as the default configuration. This should have no functional differences to before. While we are at it, remove the obsolete nat option. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> SVN-Revision: 24185
19 lines
354 B
Bash
Executable File
19 lines
354 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
#
|
|
|
|
START=05
|
|
|
|
start() {
|
|
local board=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
|
|
|
|
[ ! -d /etc/defconfig/$board ] && board="generic"
|
|
|
|
for f in $( ls /etc/defconfig/$board ); do
|
|
if [ ! -e /etc/config/$f ]; then
|
|
cp /etc/defconfig/$board/$f /etc/config/
|
|
fi
|
|
done
|
|
}
|