ipq40xx: fix ipq40xx_setup_macs for Linksys EA6350v3
authorOever González <notengobattery@gmail.com>
Thu, 14 Feb 2019 00:13:07 +0000 (18:13 -0600)
committerChristian Lamparter <chunkeey@gmail.com>
Thu, 14 Feb 2019 15:56:15 +0000 (16:56 +0100)
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>
target/linux/ipq40xx/base-files/etc/board.d/02_network

index dffccd9fad21590b4d99449906c0c250fba0d804..43be592071d2d2600f2c82fcff4afbd3b28e0c88 100755 (executable)
@@ -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