With a recent upstream change, build.config MAKE_GOALS are no longer respected. So, we must define our make goals via the kernel_build rule. Add make_rules to the consolidate build. Bug: 284126265 Change-Id: I30a98807d47a2be50c681d154d1bd0360e8bfe34 Signed-off-by: John Moon <quic_johmoo@quicinc.com>
67 lines
1.9 KiB
Python
67 lines
1.9 KiB
Python
load(
|
|
"//build/kernel/kleaf:kernel.bzl",
|
|
"kernel_build",
|
|
"kernel_build_config",
|
|
"kernel_images",
|
|
"kernel_modules_install",
|
|
)
|
|
load("//build/kernel/kleaf:constants.bzl", "aarch64_outs")
|
|
load(":modules.bzl", "COMMON_GKI_MODULES_LIST")
|
|
|
|
rule_base = "kernel_aarch64_consolidate"
|
|
|
|
def _gen_config_without_source_lines(build_config, target):
|
|
rule_name = "{}.{}".format(target, build_config)
|
|
out_file_name = rule_name + ".generated"
|
|
native.genrule(
|
|
name = rule_name,
|
|
srcs = [build_config],
|
|
outs = [out_file_name],
|
|
cmd_bash = "sed -e '/^\\. /d' $(location {}) > $@".format(build_config),
|
|
)
|
|
|
|
return ":" + rule_name
|
|
|
|
def define_consolidate():
|
|
kernel_build_config(
|
|
name = rule_base + "_build_config",
|
|
srcs = [
|
|
# do not sort
|
|
"build.config.constants",
|
|
_gen_config_without_source_lines("build.config.common", rule_base),
|
|
"build.config.aarch64",
|
|
"build.config.gki_consolidate.aarch64",
|
|
_gen_config_without_source_lines("build.config.gki.aarch64", rule_base),
|
|
],
|
|
)
|
|
|
|
kernel_build(
|
|
name = rule_base,
|
|
outs = aarch64_outs,
|
|
implicit_outs = [
|
|
"scripts/sign-file",
|
|
"certs/signing_key.pem",
|
|
"certs/signing_key.x509",
|
|
],
|
|
make_goals = [
|
|
"Image",
|
|
"modules",
|
|
"Image.lz4",
|
|
"Image.gz",
|
|
],
|
|
module_implicit_outs = COMMON_GKI_MODULES_LIST,
|
|
build_config = rule_base + "_build_config",
|
|
)
|
|
|
|
kernel_modules_install(
|
|
name = "{}_modules_install".format(rule_base),
|
|
kernel_build = ":{}".format(rule_base),
|
|
)
|
|
|
|
kernel_images(
|
|
name = "{}_images".format(rule_base),
|
|
kernel_build = ":{}".format(rule_base),
|
|
build_system_dlkm = True,
|
|
kernel_modules_install = ":{}_modules_install".format(rule_base),
|
|
)
|