aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq40xx/base-files/etc/board.d/02_network
diff options
context:
space:
mode:
authorOever González <notengobattery@gmail.com>2019-02-13 18:13:07 -0600
committerChristian Lamparter <chunkeey@gmail.com>2019-02-14 16:56:15 +0100
commitc35d7f3f8a81a1e256b238a47d391175da9e34b8 (patch)
tree6f0095bff52be6eafbfe6ce8ea9e6fb4ce2b97ec /target/linux/ipq40xx/base-files/etc/board.d/02_network
parent064e4315750fbb80b21293c87cae0abb2c257d9b (diff)
downloadupstream-c35d7f3f8a81a1e256b238a47d391175da9e34b8.tar.gz
upstream-c35d7f3f8a81a1e256b238a47d391175da9e34b8.tar.bz2
upstream-c35d7f3f8a81a1e256b238a47d391175da9e34b8.zip
ipq40xx: fix ipq40xx_setup_macs for Linksys EA6350v3
This commit fixes the script that sets the MAC address of the LAN switch. The LAN MAC address should be the WAN MAC address plus one. Without this patch the WAN and the LAN interface will use the same MAC address and an error will be generated. With this patch all interfaces will have a different MAC address, consecutive in the following order: WAN, LAN, radio0 and radio1. Signed-off-by: Oever González <notengobattery@gmail.com>
Diffstat (limited to 'target/linux/ipq40xx/base-files/etc/board.d/02_network')
-rwxr-xr-xtarget/linux/ipq40xx/base-files/etc/board.d/02_network2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ipq40xx/base-files/etc/board.d/02_network b/target/linux/ipq40xx/base-files/etc/board.d/02_network
index dffccd9fad..43be592071 100755
--- a/target/linux/ipq40xx/base-files/etc/board.d/02_network
+++ b/target/linux/ipq40xx/base-files/etc/board.d/02_network
@@ -65,7 +65,7 @@ ipq40xx_setup_macs()
;;
linksys,ea6350v3)
wan_mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
- lan_mac=$(macaddr_add $(wan_mac) +1)
+ lan_mac=$(macaddr_add "$wan_mac" 1)
;;
esac