From b77e92e020c17b5530ec5c1b37cf66ae0cf717e6 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Sat, 26 Jul 2014 20:36:09 +0000 Subject: ramips: ethernet mac cleanup Compile tested all subtargets and profiles. Unfortunately I don't own any board affected by these changes, so no run tests. Signed-off-by: Roman Yeryomin SVN-Revision: 41839 --- .../ramips/base-files/lib/preinit/06_set_iface_mac | 109 --------------------- 1 file changed, 109 deletions(-) delete mode 100644 target/linux/ramips/base-files/lib/preinit/06_set_iface_mac (limited to 'target/linux/ramips/base-files/lib/preinit') 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 deleted file mode 100644 index 2a0a4fdc76..0000000000 --- a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac +++ /dev/null @@ -1,109 +0,0 @@ -# -# Copyright (C) 2011 OpenWrt.org -# - -preinit_set_mac_address() { - local mac - - . /lib/functions.sh - . /lib/ramips.sh - - case $(ramips_board_name) in - 3g-6200n |\ - 3g-6200nl |\ - 3g300m | \ - dir-620-d1 |\ - dir-300-b7 | \ - w150m | \ - mzk-w300nh2 |\ - wl-330n |\ - wl-330n3g |\ - wr8305rt) - mac=$(mtd_get_mac_binary factory 4) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - bc2 |\ - broadway |\ - d105 |\ - dir-620-a1 |\ - esr-9753 |\ - freestation5 |\ - hlk-rm04 | \ - mpr-a1 | \ - mpr-a2 | \ - dir-300-b7 | \ - dir-320-b1 | \ - psr-680w |\ - rt-n56u |\ - sl-r7205) - mac=$(mtd_get_mac_binary factory 4) - mac=$(macaddr_setbit_la "$mac") - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - br-6475nd) - mac=$(mtd_get_mac_binary devdata 13) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - asl26555 |\ - dir-300-b1 |\ - dir-300-b2 |\ - dir-600-b1 |\ - dir-610-a1) - mac=$(mtd_get_mac_binary devdata 16388) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - cy-swr1100 |\ - dir-645) - mac=$(mtd_get_mac_ascii nvram lanmac) - mac=$(macaddr_setbit_la "$mac") - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - dap-1350) - mac=$(mtd_get_mac_binary devdata 46) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - all0239-3g |\ - all0256n |\ - all5002 |\ - all5003 |\ - awm002-evb |\ - carambola |\ - dir-615-h1 |\ - fonera20n |\ - ip2202 |\ - rt-n13u |\ - hw550-3g |\ - nbg-419n |\ - omni-emb |\ - omni-emb-hpm |\ - px4885 |\ - tew-691gr |\ - tew-692gr |\ - w306r-v20 |\ - w502u |\ - wr6202 |\ - wnce2001 |\ - xdxrn502j) - mac=$(mtd_get_mac_binary factory 40) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - m3 |\ - m4 |\ - x5 |\ - x8) - mac=$(mtd_get_mac_binary factory 4) - mac=$(macaddr_add "$mac" -1) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - wl341v3) - mac=$(mtd_get_mac_binary board-nvram 65440) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - rt-n10-plus) - mac=$(mtd_get_mac_binary devconf 4) - ifconfig eth0 hw ether $mac 2>/dev/null - ;; - esac -} - -boot_hook_add preinit_main preinit_set_mac_address -- cgit v1.2.3