From 50cdf04760337da930516f1146a80ba6dd75a68c Mon Sep 17 00:00:00 2001 From: HenriDellal Date: Fri, 4 Dec 2020 03:59:49 +0300 Subject: [PATCH] kconfig check: add Samsung-specific options (MR 2000) Adds checks for following kernel config options: SAMSUNG_TUI: TUI HW Handler - related to Samsung's security measures Creates "secure frame buffer", results in bootloop SEC_RESTRICT_ROOTING: blocks gaining root permissions TZDEV: Samsung TZ Based Secure OS interface driver (results in bootloops) --- pmb/config/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 479038a5..bd4f8e2b 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -199,7 +199,10 @@ necessary_kconfig_options = { "EXT4_FS": True, "KINETO_GAN": False, "PFT": False, + "SAMSUNG_TUI": False, + "SEC_RESTRICT_ROOTING": False, "SYSVIPC": True, + "TZDEV": False, "USE_VFB": False, "VT": True, }