android_kernel_samsung_sm8650/gen4auto_lxc.bzl
Sankalp Negi 8509239c44 build: Use "lxc" differentiators for monaco_auto target
In order to avoid conflicts with future Android/GKI variants
for same target, use "lxc" as differentiators for monaco_auto.

Change-Id: Ia7bb2d2a0ee30af453c043d375e2e81d203d3822
Signed-off-by: Sankalp Negi <quic_snegi@quicinc.com>
2023-05-16 01:57:26 -07:00

25 lines
699 B
Python

load(":target_variants.bzl", "lxc_variants")
load(":msm_kernel_lxc.bzl", "define_msm_lxc")
load(":image_opts.bzl", "boot_image_opts")
target_name = "gen4auto"
def define_gen4auto_lxc():
_gen4auto_lxc_in_tree_modules = [
# keep sorted
]
for variant in lxc_variants:
mod_list = _gen4auto_lxc_in_tree_modules
define_msm_lxc(
msm_target = target_name,
variant = variant,
defconfig = "build.config.msm.auto",
in_tree_module_list = mod_list,
boot_image_opts = boot_image_opts(
boot_image_header_version = 2,
base_address = 0x80000000,
page_size = 4096),
)