summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/base-files/etc/init.d/defconfig
blob: dac9c23440f5961661926d4ba9a3570dbce3968b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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
}