Comment 30 for bug 192845

Revision history for this message
Ernst Oudhof (e-oudhof) wrote :

I think I nailed it....

udev tries to rename the wmaster* device generated by mac80211. It should only rename the real interface named wlan*.
By adding the following to /etc/udev/rules.d/05-options.rules the wmaster* devices will be ignored and renaming works correctly again... ( so no boot delay :-) )

#Do nothing with wmaster virtual devices
SUBSYSTEM=="net", KERNEL=="wmaster*", OPTIONS+="ignore_device"

Also attached as patch....