1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-22 16:24:11 +03:00
openwrt-xburst/target/linux/ramips/base-files/etc/uci-defaults/nw718
juhosg 0f217d1398 ramips: combine led setup for all boards in one file
This removes unnecessary duplication and simplifies led setup for new
boards. It would be a one line change most likely.

Signed-off-by: Alexander Gordeev <lasaine@lvk.cs.msu.su>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28569 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-10-24 21:49:31 +00:00

37 lines
573 B
Bash
Executable File

#!/bin/sh
#
# Copyright (C) 2011 OpenWrt.org
#
nw718_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}" == "nw718" ]; then
nw718_set_macs
fi