-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathautogvm_lxc.bzl
More file actions
27 lines (23 loc) · 805 Bytes
/
autogvm_lxc.bzl
File metadata and controls
27 lines (23 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
load(":image_opts.bzl", "boot_image_opts")
load(":msm_kernel_lxc.bzl", "define_msm_lxc")
load(":target_variants.bzl", "lxc_variants")
target_name = "autogvm"
def define_autogvm_lxc():
_autogvm_lxc_in_tree_modules = [
# keep sorted
"drivers/rpmsg/qcom_glink_cma.ko",
"drivers/soc/qcom/hgsl/qcom_hgsl.ko",
]
for variant in lxc_variants:
mod_list = _autogvm_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,
),
)