1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 12:27:51 +03:00

[ar71xx] defconfig: move defaults from /etc/config/defaults/ to /etc/defconfig/, previous location broke uci

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14662 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
agb 2009-02-26 05:54:07 +00:00
parent a1a27e7336
commit 5a829455cb
4 changed files with 3 additions and 3 deletions

View File

@ -10,11 +10,11 @@ START=05
start() {
local board=$(ar71xx_board_name)
[ ! -d /etc/config/defaults/$board ] && board="generic"
[ ! -d /etc/defconfig/$board ] && board="generic"
for f in $( ls /etc/config/defaults/$board ); do
for f in $( ls /etc/defconfig/$board ); do
if [ ! -e /etc/config/$f ]; then
cp /etc/config/defaults/$board/$f /etc/config/
cp /etc/defconfig/$board/$f /etc/config/
fi
done
}