1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-14 20:21:05 +02:00

21 lines
318 B
Plaintext
Raw Normal View History

#!/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 ] && return 0
for f in $( ls /etc/defconfig/$board ); do
if [ ! -e /etc/config/$f ]; then
cp /etc/defconfig/$board/$f /etc/config/
fi
done
}