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