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> SVN-Revision: 28571
This commit is contained in:
@@ -46,6 +46,7 @@ case "$FIRMWARE" in
|
||||
;;
|
||||
|
||||
argus-atp52b | \
|
||||
bc2 | \
|
||||
fonera20n | \
|
||||
hw550-3g | \
|
||||
mofi3500-3gn | \
|
||||
|
||||
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"
|
||||
;;
|
||||
|
||||
@@ -24,7 +24,7 @@ preinit_set_mac_address() {
|
||||
. /lib/ramips.sh
|
||||
|
||||
case $(ramips_board_name) in
|
||||
nw718)
|
||||
bc2 | nw718)
|
||||
nw718_set_mac
|
||||
;;
|
||||
esac
|
||||
|
||||
@@ -37,6 +37,9 @@ ramips_board_name() {
|
||||
*"NBG-419N")
|
||||
name="nbg-419n"
|
||||
;;
|
||||
*"NexAira BC2")
|
||||
name="bc2"
|
||||
;;
|
||||
*"NW718")
|
||||
name="nw718"
|
||||
;;
|
||||
|
||||
@@ -14,7 +14,7 @@ platform_check_image() {
|
||||
[ "$ARGC" -gt 1 ] && return 1
|
||||
|
||||
case "$board" in
|
||||
dir-300-b1 | dir-600-b1 | dir-600-b2 | fonera20n | nbg-419n | nw718 | rt-g32-b1 | v22rw-2x2 | whr-g300n | hw550-3g | mofi3500-3gn)
|
||||
bc2 | dir-300-b1 | dir-600-b1 | dir-600-b2 | fonera20n | nbg-419n | nw718 | rt-g32-b1 | v22rw-2x2 | whr-g300n | hw550-3g | mofi3500-3gn)
|
||||
[ "$magic" != "2705" ] && {
|
||||
echo "Invalid image type."
|
||||
return 1
|
||||
|
||||
Reference in New Issue
Block a user