1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-14 19:23:53 +02:00

ipq40xx: add missing case closing symbol

Though not strictly necessary, add the closing symbol to make the
job easier for future developers editing this file.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
Adrian Schmutzler 2021-06-27 20:40:53 +02:00
parent 88114f617a
commit fac6096ad6

View File

@ -29,6 +29,7 @@ preinit_set_mac_address() {
base_mac=$(cat /sys/class/net/eth0/address) base_mac=$(cat /sys/class/net/eth0/address)
ip link set dev eth0 address $(macaddr_add "$base_mac" 2) ip link set dev eth0 address $(macaddr_add "$base_mac" 2)
ip link set dev eth1 address $(macaddr_add "$base_mac" 3) ip link set dev eth1 address $(macaddr_add "$base_mac" 3)
;;
esac esac
} }