From 806fc43cd8e1240278333bdab3dad57c8e2eda45 Mon Sep 17 00:00:00 2001 From: "T.J. Mercier" Date: Thu, 19 Jan 2023 01:46:38 +0000 Subject: [PATCH] ANDROID: Temporarily disable vendor symbol lists This will be reverted before freezing the KMI on this branch. Bug: 264279944 Change-Id: Ic0229cf4e8a9462732cb0555af980747eaee6ebc Signed-off-by: T.J. Mercier --- BUILD.bazel | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index 723c46b17611..0482c78f7028 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -15,23 +15,39 @@ package( define_common_kernels(target_configs = { "kernel_aarch64": { "module_implicit_outs": COMMON_GKI_MODULES_LIST, + "additional_kmi_symbol_lists": [], # Temporarily disable vendor symbol lists. This will be reverted before freezing the KMI. + "kmi_symbol_list_strict_mode": False, + "trim_nonlisted_kmi": False, }, "kernel_aarch64_16k": { "module_implicit_outs": COMMON_GKI_MODULES_LIST, + "additional_kmi_symbol_lists": [], # Temporarily disable vendor symbol lists. This will be reverted before freezing the KMI. + "kmi_symbol_list_strict_mode": False, + "trim_nonlisted_kmi": False, }, "kernel_aarch64_debug": { "module_implicit_outs": COMMON_GKI_MODULES_LIST, + "additional_kmi_symbol_lists": [], # Temporarily disable vendor symbol lists. This will be reverted before freezing the KMI. + "kmi_symbol_list_strict_mode": False, + "trim_nonlisted_kmi": False, }, "kernel_riscv64": { "module_implicit_outs": COMMON_GKI_MODULES_LIST, + "additional_kmi_symbol_lists": [], # Temporarily disable vendor symbol lists. This will be reverted before freezing the KMI. + "kmi_symbol_list_strict_mode": False, + "trim_nonlisted_kmi": False, }, "kernel_x86_64": { "kmi_symbol_list_strict_mode": False, "module_implicit_outs": COMMON_GKI_MODULES_LIST, + "additional_kmi_symbol_lists": [], # Temporarily disable vendor symbol lists. This will be reverted before freezing the KMI. + "trim_nonlisted_kmi": False, }, "kernel_x86_64_debug": { "kmi_symbol_list_strict_mode": False, "module_implicit_outs": COMMON_GKI_MODULES_LIST, + "additional_kmi_symbol_lists": [], # Temporarily disable vendor symbol lists. This will be reverted before freezing the KMI. + "trim_nonlisted_kmi": False, }, })