Skip to content
Snippets Groups Projects

udev: split wifi and bt rules into two separate files, add systemd unit file, and add BT mac retry

Merged Clayton Craft requested to merge craftyguy/split-udev into master
All threads resolved!
+ 2
2
@@ -204,13 +204,13 @@ mac_wlan() {
&& ip link set dev "$WLAN_INTERFACE" address "$WLAN_MAC" ; then
break
fi
echo "Unable to set wlan MAC, retrying after 1 second..."
log "Unable to set wlan MAC, retrying after 1 second..."
sleep 1
timeout=$((timeout + 1))
done
if [ $timeout -ge "$WLAN_TIMEOUT" ]; then
echo "Failed to set wlan MAC address, command timed out after $WLAN_TIMEOUT seconds"
log "Failed to set wlan MAC address, command timed out after $WLAN_TIMEOUT seconds"
return 1
fi
Loading