Skip to content
Snippets Groups Projects
Commit 844bdf94 authored by Tomasz Maciej Nowak's avatar Tomasz Maciej Nowak Committed by Hauke Mehrtens
Browse files

mvebu: base-files: moving on from net-tools


Remove dependency on net-tools, replacing calls to ifconfig with iproute
equivalent, in functions changing interface MAC addresses.

Signed-off-by: default avatarTomasz Maciej Nowak <tomek_n@o2.pl>
parent d29a2814
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,8 @@ preinit_set_mac_address() {
case $(board_name) in
armada-xp-linksys-mamba)
mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
ifconfig eth0 hw ether $mac 2>/dev/null
ifconfig eth1 hw ether $mac 2>/dev/null
ip link set dev eth0 address $mac 2>/dev/null
ip link set dev eth1 address $mac 2>/dev/null
;;
armada-385-linksys-caiman|armada-385-linksys-cobra|armada-385-linksys-rango|armada-385-linksys-shelby)
# rename interfaces back to the way they were with 4.4
......@@ -26,8 +26,8 @@ preinit_set_mac_address() {
mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
mac_wan=$(macaddr_setbit_la "$mac")
ifconfig eth1 hw ether $mac 2>/dev/null
ifconfig eth0 hw ether $mac_wan 2>/dev/null
ip link set dev eth1 address $mac 2>/dev/null
ip link set dev eth0 address $mac_wan 2>/dev/null
;;
armada-385-db-ap|armada-388-clearfog)
# rename interfaces back to the way they were with 4.4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment