| # Copyright (C) 2022 The Android Open Source Project |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| """Build kernel-uapi-headers.tar.gz.""" |
| |
| load(":common_providers.bzl", "KernelSerializedEnvInfo") |
| load(":debug.bzl", "debug") |
| load( |
| ":utils.bzl", |
| "kernel_utils", |
| "utils", |
| ) |
| |
| visibility("//build/kernel/kleaf/...") |
| |
| def _kernel_uapi_headers_impl(ctx): |
| out_file = ctx.actions.declare_file("{}/kernel-uapi-headers.tar.gz".format(ctx.label.name)) |
| |
| command = kernel_utils.setup_serialized_env_cmd( |
| serialized_env_info = ctx.attr.config[KernelSerializedEnvInfo], |
| restore_out_dir_cmd = utils.get_check_sandbox_cmd(), |
| ) |
| command += """ |
| # Create staging directory |
| mkdir -p {kernel_uapi_headers_dir}/usr |
| # Actual headers_install |
| make -C ${{KERNEL_DIR}} ${{TOOL_ARGS}} O=${{OUT_DIR}} INSTALL_HDR_PATH=$(realpath {kernel_uapi_headers_dir}/usr) headers_install |
| # Create archive |
| tar czf {out_file} --directory={kernel_uapi_headers_dir} usr/ |
| # Delete kernel_uapi_headers_dir because it is not declared |
| rm -rf {kernel_uapi_headers_dir} |
| """.format( |
| out_file = out_file.path, |
| kernel_uapi_headers_dir = out_file.path + "_staging", |
| ) |
| inputs = [] |
| transitive_inputs = [target.files for target in ctx.attr.srcs] |
| transitive_inputs.append(ctx.attr.config[KernelSerializedEnvInfo].inputs) |
| tools = ctx.attr.config[KernelSerializedEnvInfo].tools |
| |
| debug.print_scripts(ctx, command) |
| ctx.actions.run_shell( |
| mnemonic = "KernelUapiHeaders", |
| inputs = depset(inputs, transitive = transitive_inputs), |
| tools = tools, |
| outputs = [out_file], |
| progress_message = "Building UAPI kernel headers %{label}", |
| command = command, |
| ) |
| |
| return [ |
| DefaultInfo(files = depset([out_file])), |
| ] |
| |
| kernel_uapi_headers = rule( |
| implementation = _kernel_uapi_headers_impl, |
| doc = """Build kernel-uapi-headers.tar.gz""", |
| attrs = { |
| "srcs": attr.label_list(allow_files = True), |
| "config": attr.label( |
| mandatory = True, |
| providers = [KernelSerializedEnvInfo], |
| doc = "the kernel_config target", |
| ), |
| "_debug_print_scripts": attr.label(default = "//build/kernel/kleaf:debug_print_scripts"), |
| }, |
| ) |