pmaports/main/postmarketos-base-ui/postmarketos-base-ui.post-install
Clayton Craft be7e85bb0e
main/postmarketos-base-ui: Allow selecting WiFi backend (MR 4564)
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
2023-12-09 13:22:44 -08:00

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