Skip to content
Snippets Groups Projects

pmb.parse.depends.package_provider: add type hinting and fix references

Merged Clayton Craft requested to merge craftyguy/fix-fde into master
2 files
+ 11
9
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 6
2
@@ -1291,8 +1291,12 @@ def create_device_rootfs(args: PmbArgs, step, steps):
unlocker = pmb.parse.depends.package_provider(
"postmarketos-fde-unlocker", install_packages, chroot
)
if unlocker["pkgname"] not in install_packages:
install_packages += [unlocker["pkgname"]]
if not unlocker:
raise RuntimeError(
"Full disk encryption enabled but unable to find any suitable FDE unlocker app"
)
if unlocker.pkgname not in install_packages:
install_packages += [unlocker.pkgname]
else:
install_packages += ["postmarketos-base-nofde"]
Loading