mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
ramips: Support for NexAira BC2
The preconfiguration of the USB LED has benn move to the /etc/uci-defaults/leds script. [juhosg] Signed-off-by: Adam Porter <porter.adam at gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28571 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
36
target/linux/ramips/base-files/etc/uci-defaults/bc2
Normal file
36
target/linux/ramips/base-files/etc/uci-defaults/bc2
Normal file
@@ -0,0 +1,36 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011 OpenWrt.org
|
||||
#
|
||||
|
||||
bc2_set_macs() {
|
||||
local part
|
||||
local lan_mac
|
||||
local wan_mac
|
||||
|
||||
[ -z $(which maccalc) ] && return
|
||||
|
||||
. /etc/functions.sh
|
||||
|
||||
part=$(find_mtd_part "factory")
|
||||
[ -z $part ] && return
|
||||
|
||||
lan_mac=$(dd bs=1 skip=4 count=6 if=$part 2>/dev/null | maccalc bin2mac)
|
||||
[ -z $lan_mac ] && return
|
||||
|
||||
wan_mac=$(maccalc add $lan_mac 1)
|
||||
|
||||
uci batch <<EOF
|
||||
set network.lan.macaddr='$lan_mac'
|
||||
set network.wan.macaddr='$wan_mac'
|
||||
commit network
|
||||
EOF
|
||||
}
|
||||
|
||||
. /lib/ramips.sh
|
||||
|
||||
board=$(ramips_board_name)
|
||||
|
||||
if [ "${board}" == "bc2" ]; then
|
||||
bc2_set_macs
|
||||
fi
|
||||
@@ -19,6 +19,9 @@ EOF
|
||||
board=$(ramips_board_name)
|
||||
|
||||
case $board in
|
||||
bc2)
|
||||
set_usb_led "bc2:blue:usb"
|
||||
;;
|
||||
fonera20n)
|
||||
set_usb_led "fonera20n:amber:usb"
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user