mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	This patch adds support for D-Link's DVA-G3810BN/TL product. Signed-off-by: Roman Dumycz <roman@secureas.com> SVN-Revision: 26956
		
			
				
	
	
		
			23 lines
		
	
	
		
			450 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			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
 | 
						|
}
 |