From 2801b5d687b599bf5ad531d926dbce26e73236e3 Mon Sep 17 00:00:00 2001 From: Tim Zimmermann Date: Sun, 12 Dec 2021 08:34:01 +0100 Subject: [PATCH] kconfig-check: only check TZDEV/SAMSUNG_TUI on kernels older than 4.14 (MR 2148) * On newer samsung devices disabling these does the exact opposite of what's mentioned in https://gitlab.com/postmarketOS/pmbootstrap/-/commit/50cdf04760337da930516f1146a80ba6dd75a68c * With these enabled the device boots up just fine --- pmb/config/__init__.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index fc65d3d8..38b2f709 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -289,11 +289,9 @@ necessary_kconfig_options = { "EXT4_FS": True, "KINETO_GAN": False, "PFT": False, - "SAMSUNG_TUI": False, "SEC_RESTRICT_ROOTING": False, "SYSVIPC": True, "TMPFS_POSIX_ACL": True, - "TZDEV": False, "USE_VFB": False, "VT": True, } @@ -309,6 +307,12 @@ necessary_kconfig_options = { "DEVPTS_MULTIPLE_INSTANCES": True, } }, + "<4.14.0": { + "all": { + "SAMSUNG_TUI": False, + "TZDEV": False, + } + }, "<5.2.0": { "armhf armv7 x86": { "LBDAF": True