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

19
parrot_tuivm.bzl Normal file
View File

@@ -0,0 +1,19 @@
load(":target_variants.bzl", "vm_variants")
load(":msm_kernel_vm.bzl", "define_msm_vm")
load(":image_opts.bzl", "vm_image_opts")
target_name = "parrot-tuivm"
def define_parrot_tuivm():
image_opts = vm_image_opts(
kernel_offset = 0xE0C00000,
dtb_offset = 0xE2C00000,
ramdisk_offset = 0xE2F00000,
dummy_img_offset = 0xE55F2000,
)
for variant in vm_variants:
define_msm_vm(
msm_target = target_name,
variant = variant,
vm_image_opts = image_opts,
)