Add samsung specific changes

This commit is contained in:
2025-08-11 14:29:00 +02:00
parent c66122e619
commit 4d134a1294
2688 changed files with 1127995 additions and 11475 deletions

25
sun_allyes.bzl Normal file
View File

@@ -0,0 +1,25 @@
load(":target_variants.bzl", "le_variants")
load(":msm_kernel_le.bzl", "define_msm_le")
load(":image_opts.bzl", "boot_image_opts")
target_name = "sun-allyes"
def define_sun_allyes():
_sun_le_in_tree_modules = [
# keep sorted
]
for variant in le_variants:
mod_list = _sun_le_in_tree_modules
define_msm_le(
msm_target = target_name,
variant = variant,
defconfig = "build.config.allyesconfig",
in_tree_module_list = mod_list,
boot_image_opts = boot_image_opts(
boot_image_header_version = 2,
base_address = 0x80000000,
page_size = 4096,
),
)