diff options
author | Tomasz Maciej Nowak <tomek_n@o2.pl> | 2018-01-24 16:41:32 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-03-02 21:33:08 +0100 |
commit | 844bdf94e42e967e35b71212cb9261fcb35e6aae (patch) | |
tree | 7f17a3b8c2acab99787e778248c788bce92be387 /target/linux/mvebu/base-files/lib/preinit | |
parent | d29a2814b71554231630859dc08cf1f0739f5b45 (diff) | |
download | upstream-844bdf94e42e967e35b71212cb9261fcb35e6aae.tar.gz upstream-844bdf94e42e967e35b71212cb9261fcb35e6aae.tar.bz2 upstream-844bdf94e42e967e35b71212cb9261fcb35e6aae.zip |
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: Tomasz Maciej Nowak <tomek_n@o2.pl>
Diffstat (limited to 'target/linux/mvebu/base-files/lib/preinit')
-rw-r--r-- | target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac b/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac index e884351bf7..b56cbf50ad 100644 --- a/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac +++ b/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac @@ -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 |