From 1dfce9d3423b24ad18019f9d2fe4732b95833b62 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 12 Mar 2023 16:13:25 +0100 Subject: [PATCH] kconfig_options_waydroid: enable PSI Ensure that PSI support is built, and that it is not disabled by default. That way we don't need to pass psi=1 during boot to enable it. Related: pmaports MR 3901 Reviewed-by: Clayton Craft Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230312151325.1968-19-ollieparanoid@postmarketos.org%3E --- pmb/config/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 31d94445..7f74448f 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -369,6 +369,8 @@ kconfig_options_waydroid = { "IP_NF_MANGLE": True, "NETFILTER_XTABLES": True, "NETFILTER_XT_MATCH_COMMENT": True, + "PSI": True, + "PSI_DEFAULT_DISABLED": False, "SQUASHFS": True, "SQUASHFS_XATTR": True, "SQUASHFS_XZ": True,