aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/x86/base-files/etc/init.d/defconfig
blob: 4b4f28f20d2f9b80bfb1fbed8b2d2b8bc421b08b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh /etc/rc.common
#
# Copyright (C) 2010 Thinktube Inc.
#

START=05

start() {
	. /lib/soekris.sh

	local board=$(net48xx_board_name)

	[ ! -d /etc/defconfig/$board ] && board="net4826"

	for f in $( ls /etc/defconfig/$board ); do
		if [ ! -e /etc/config/$f ]; then
			cp /etc/defconfig/$board/$f /etc/config/
		fi
	done
}