mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 03:01:09 +02:00
bcm63xx: move the board name workaround to /lib/brcm63xx.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31872 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2c54f4168e
commit
acbbcb35b8
@ -6,17 +6,13 @@
|
|||||||
START=05
|
START=05
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
local board=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
|
. /lib/brcm63xx.sh
|
||||||
|
|
||||||
if [ "$board" = "96358VW" ] && [ -e /proc/switch/eth1/enable ]; then
|
[ ! -d /etc/defconfig/$board_name ] && board_name="generic"
|
||||||
board="DVAG3810BN"
|
|
||||||
fi
|
|
||||||
|
|
||||||
[ ! -d /etc/defconfig/$board ] && board="generic"
|
for f in $( ls /etc/defconfig/$board_name ); do
|
||||||
|
|
||||||
for f in $( ls /etc/defconfig/$board ); do
|
|
||||||
if [ ! -e /etc/config/$f ]; then
|
if [ ! -e /etc/config/$f ]; then
|
||||||
cp /etc/defconfig/$board/$f /etc/config/
|
cp /etc/defconfig/$board_name/$f /etc/config/
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,10 @@ brcm63xx_has_reset_button=""
|
|||||||
brcm63xx_detect() {
|
brcm63xx_detect() {
|
||||||
board_name=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
|
board_name=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
|
||||||
|
|
||||||
|
if [ "$board_name" = "96358VW" ] && [ -e /proc/switch/eth1/enable ]; then
|
||||||
|
board_name="DVAG3810BN"
|
||||||
|
fi
|
||||||
|
|
||||||
case "$board_name" in
|
case "$board_name" in
|
||||||
96348GW)
|
96348GW)
|
||||||
status_led="power"
|
status_led="power"
|
||||||
|
Loading…
Reference in New Issue
Block a user