diff options
| author | Shiji Yang | 2025-10-18 11:59:06 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-10-19 17:44:54 +0000 |
| commit | 86b6b31247cb6ec0a9e7839bee8e91cab0f00ba4 (patch) | |
| tree | 6efe988ad0e02d776540a7c9dd999b245bb0c68d | |
| parent | 70dd565590850ea8799ea7bbdd7b755fef0984e5 (diff) | |
| download | openwrt-86b6b31247cb6ec0a9e7839bee8e91cab0f00ba4.tar.gz | |
ipq806x: add missing semicolons for 10_fix_wifi_mac
Fix the syntax issue.
Fixes: 148f82ad4525 ("ipq806x: use nvmem for wifi mac")
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/20446
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac b/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac index ee641fc24c..52cb55ab50 100644 --- a/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac +++ b/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac @@ -20,6 +20,7 @@ case "$board" in linksys,ea7500-v1 |\ linksys,ea8500) macaddr_add $(mtd_get_mac_ascii devinfo hw_mac_addr) $(($PHYNBR + 1)) > /sys${DEVPATH}/macaddress + ;; esac OPATH=${DEVPATH##/devices/platform/} |