1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 11:40:22 +03:00
openwrt-xburst/target/linux/brcm63xx/base-files/etc/init.d/defconfig
florian 547875d0c9 [brcm63xx] add support for D-Link DVA-G3810BN/TL
This patch adds support for D-Link's DVA-G3810BN/TL product.

Signed-off-by: Roman Dumycz <roman@secureas.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26956 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-05-20 10:06:15 +00:00

23 lines
450 B
Bash
Executable File

#!/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)
if [ "$board" = "96358VW" ] && [ -e /proc/switch/eth1/enable ]; then
board="DVAG3810BN"
fi
[ ! -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
}