OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | # |
2 | # Copyright (C) 2014-2015 OpenWrt.org |
||
3 | # Copyright (C) 2016 LEDE-Project.org |
||
4 | # |
||
5 | |||
6 | preinit_set_mac_address() { |
||
7 | local mac |
||
8 | |||
9 | . /lib/functions.sh |
||
10 | |||
11 | case $(board_name) in |
||
12 | armada-xp-linksys-mamba) |
||
13 | mac=$(mtd_get_mac_ascii devinfo hw_mac_addr) |
||
14 | ip link set dev eth0 address $mac 2>/dev/null |
||
15 | ip link set dev eth1 address $mac 2>/dev/null |
||
16 | ;; |
||
17 | armada-385-linksys-caiman|armada-385-linksys-cobra|armada-385-linksys-rango|armada-385-linksys-shelby|armada-385-linksys-venom) |
||
18 | # rename interfaces back to the way they were with 4.4 |
||
19 | case "$(readlink /sys/class/net/eth0)" in |
||
20 | *f1070000*) |
||
21 | ip link set eth0 name tmp0 |
||
22 | ip link set eth1 name eth0 |
||
23 | ip link set tmp0 name eth1 |
||
24 | ;; |
||
25 | esac |
||
26 | |||
27 | mac=$(mtd_get_mac_ascii devinfo hw_mac_addr) |
||
28 | mac_wan=$(macaddr_setbit_la "$mac") |
||
29 | ip link set dev eth1 address $mac 2>/dev/null |
||
30 | ip link set dev eth0 address $mac_wan 2>/dev/null |
||
31 | ;; |
||
32 | armada-385-db-ap|armada-388-clearfog) |
||
33 | # rename interfaces back to the way they were with 4.4 |
||
34 | case "$(readlink /sys/class/net/eth0)" in |
||
35 | *f1070000*) |
||
36 | ip link set eth0 name tmp0 |
||
37 | ip link set eth1 name eth0 |
||
38 | ip link set eth2 name eth1 |
||
39 | ip link set tmp0 name eth2 |
||
40 | ;; |
||
41 | esac |
||
42 | ;; |
||
43 | esac |
||
44 | } |
||
45 | |||
46 | boot_hook_add preinit_main preinit_set_mac_address |