be7e85bb0e
With this change, users who build pmOS will be able to select a WiFi backend (wpa_supplicant or iwd) Also see: https://gitlab.com/postmarketOS/pmaports/-/issues/1379
6 lines
116 B
Bash
6 lines
116 B
Bash
#!/bin/sh -e
|
|
|
|
for service in cgroups dbus haveged chronyd rfkill; do
|
|
rc-update -q add $service default
|
|
done
|
|
exit 0
|