mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 17:32:57 +00:00
ramips: setup bc2 mac addresses from the generic network script
SVN-Revision: 29377
This commit is contained in:
parent
02f95d4fb3
commit
295e04084c
@ -1,36 +0,0 @@
|
|||||||
#!/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
|
|
@ -115,6 +115,7 @@ case $board in
|
|||||||
set_macs_only_lan_from_mtd "u-boot" 262148
|
set_macs_only_lan_from_mtd "u-boot" 262148
|
||||||
;;
|
;;
|
||||||
argus-atp52b | \
|
argus-atp52b | \
|
||||||
|
b2c | \
|
||||||
nw718)
|
nw718)
|
||||||
create_lan_wan
|
create_lan_wan
|
||||||
set_macs_only_lan_from_mtd "factory" 4
|
set_macs_only_lan_from_mtd "factory" 4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user