rpi4: Add script to workaroud with wifi interfaces not deleted at boot

The wi-fi architecture in infix require udev to run and remove the kernel automatic wlan-interface
this. Unclear reason, but it seems that udev sometimes miss the add event.
This commit is contained in:
Mattias Walström
2026-01-19 14:54:39 +01:00
parent 79c325a7d2
commit 3eadc7d290
2 changed files with 8 additions and 0 deletions
@@ -0,0 +1,4 @@
#!/bin/sh
# Workaround for: https://github.com/kernelkit/infix/issues/1357
udevadm control --reload-rules
udevadm trigger --subsystem-match=net --action=add
@@ -0,0 +1,4 @@
#!/bin/sh
# Workaround for: https://github.com/kernelkit/infix/issues/1357
udevadm control --reload-rules
udevadm trigger --subsystem-match=net --action=add