mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 19:27:31 +02:00
fc27cddc24
* patch from #5722 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20231 3c298f89-4303-0410-b956-a3cf2f4a3e73
21 lines
325 B
Bash
Executable File
21 lines
325 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
#
|
|
|
|
START=05
|
|
|
|
start() {
|
|
. /lib/ar71xx.sh
|
|
|
|
local board=$(ar71xx_board_name)
|
|
|
|
[ ! -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
|
|
}
|