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 <tjmercier@google.com>
This commit is contained in:
T.J. Mercier 2023-01-19 01:46:38 +00:00
parent cbcd3a6460
commit 806fc43cd8

View File

@ -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,
},
})