diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-10-18 07:23:03 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-10-18 07:23:03 +0000 |
commit | 06edafd079348f84ce58807f70c1cff428a18934 (patch) | |
tree | 0c79c0dad8e3320520bb14f6b14536afd5ae38b7 /target/linux/ramips/base-files/lib/preinit | |
parent | d1a253a2fdc0afce1998e82dacece9a26dbe569e (diff) | |
download | upstream-06edafd079348f84ce58807f70c1cff428a18934.tar.gz upstream-06edafd079348f84ce58807f70c1cff428a18934.tar.bz2 upstream-06edafd079348f84ce58807f70c1cff428a18934.zip |
ramips: add user space support for the DIR-645
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 33844
Diffstat (limited to 'target/linux/ramips/base-files/lib/preinit')
-rw-r--r-- | target/linux/ramips/base-files/lib/preinit/06_set_iface_mac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac index 591c549d14..0ff21892d6 100644 --- a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac +++ b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac @@ -30,6 +30,11 @@ preinit_set_mac_address() { mac=$(ramips_get_mac_binary devdata 16388) ifconfig eth0 hw ether $mac 2>/dev/null ;; + dir-645) + mac=$(ramips_get_mac_nvram nvram lanmac) + mac=$(maccalc or "$mac" "02:00:00:00:00:00") + ifconfig eth0 hw ether $mac 2>/dev/null + ;; dap-1350) mac=$(ramips_get_mac_binary devdata 46) ifconfig eth0 hw ether $mac 2>/dev/null |