diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-01 22:48:37 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-01 22:48:37 +0000 |
commit | 295e04084c5e106dfac0d9f05ac530de5d0fc07d (patch) | |
tree | 91a6d6df1edc62a14b527203f6544c5b024fb399 /target | |
parent | 02f95d4fb374f15f2d2dec2d5247505298bf523a (diff) | |
download | upstream-295e04084c5e106dfac0d9f05ac530de5d0fc07d.tar.gz upstream-295e04084c5e106dfac0d9f05ac530de5d0fc07d.tar.bz2 upstream-295e04084c5e106dfac0d9f05ac530de5d0fc07d.zip |
ramips: setup bc2 mac addresses from the generic network script
SVN-Revision: 29377
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/base-files/etc/uci-defaults/bc2 | 36 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/network | 1 |
2 files changed, 1 insertions, 36 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/bc2 b/target/linux/ramips/base-files/etc/uci-defaults/bc2 deleted file mode 100644 index 3a93df2b71..0000000000 --- a/target/linux/ramips/base-files/etc/uci-defaults/bc2 +++ /dev/null @@ -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 diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index cd0feaf00b..e58accd181 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -115,6 +115,7 @@ case $board in set_macs_only_lan_from_mtd "u-boot" 262148 ;; argus-atp52b | \ + b2c | \ nw718) create_lan_wan set_macs_only_lan_from_mtd "factory" 4 |