install: add pmos-base-systemd if systemd enabled (MR 2273)

This commit is contained in:
Oliver Smith 2024-02-25 17:54:19 +01:00
parent 266bfc31cd
commit ed9f70739a
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 3 additions and 0 deletions

View File

@ -1203,6 +1203,9 @@ def create_device_rootfs(args, step, steps):
if args.ui.lower() != "none":
install_packages += ["postmarketos-ui-" + args.ui]
if pmb.config.other.is_systemd_selected(args):
install_packages += ["postmarketos-base-systemd"]
# Add additional providers of base/device/UI package
install_packages += get_selected_providers(args, install_packages)