1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 14:42:55 +03:00
openwrt-xburst/target/linux/ar71xx/base-files/etc/init.d/defconfig
agb 5a829455cb [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
2009-02-26 05:54:07 +00:00

21 lines
324 B
Bash
Executable File

#!/bin/sh /etc/rc.common
#
# Copyright (C) 2009 OpenWrt.org
#
. /lib/ar71xx.sh
START=05
start() {
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
}