diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-07-30 17:25:20 +0200 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-08-03 10:42:04 +0200 |
commit | 356866c481cf74e87b9025ebbfdef0995674dca3 (patch) | |
tree | af8580f8840b8816ef8382db4adb31a6205b1ae7 /target/linux/apm821xx | |
parent | 1d9542c50e2c263256446170ffbd29d0e15bb96d (diff) | |
download | upstream-356866c481cf74e87b9025ebbfdef0995674dca3.tar.gz upstream-356866c481cf74e87b9025ebbfdef0995674dca3.tar.bz2 upstream-356866c481cf74e87b9025ebbfdef0995674dca3.zip |
target: replace remaining occurrences of ifconfig with ip
ifconfig is effectively deprecated for quite some time now. Let's
replace the remaining occurrences for our target setup by the
corresponding ip commands now.
Note that this does not touch ar71xx, as it will be dropped anyway,
and changing it would only make backports harder.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/apm821xx')
-rw-r--r-- | target/linux/apm821xx/base-files/lib/preinit/05_set_iface_mac_apm821xx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/apm821xx/base-files/lib/preinit/05_set_iface_mac_apm821xx b/target/linux/apm821xx/base-files/lib/preinit/05_set_iface_mac_apm821xx index 1f8c1c29fb..5f92c01931 100644 --- a/target/linux/apm821xx/base-files/lib/preinit/05_set_iface_mac_apm821xx +++ b/target/linux/apm821xx/base-files/lib/preinit/05_set_iface_mac_apm821xx @@ -5,7 +5,7 @@ preinit_set_mac_address() { meraki,mr24|\ meraki,mx60) mac_lan=$(mtd_get_mac_binary_ubi board-config 0x66) - [ -n "$mac_lan" ] && ifconfig eth0 hw ether "$mac_lan" + [ -n "$mac_lan" ] && ip link set eth0 address "$mac_lan" ;; esac } |