From 4385d3545cc7bf5bd6eb96ee01f68acece883a28 Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Tue, 12 Nov 2024 15:13:37 -0800 Subject: Build ramdisk's build.prop with soong Following the same pattern as existing soong build.props, but with minor tweaks for ramdisk such as making the partition "bootimage". Bug: 378146476 Test: Diff'd out/target/product/vsoc_x86_64/ramdisk/system/etc/ramdisk/build.prop before and after this cl Change-Id: I7ab2621d78c28deb73628bc455e040247a3c8031 --- scripts/gen_build_prop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/gen_build_prop.py') diff --git a/scripts/gen_build_prop.py b/scripts/gen_build_prop.py index 0b7780e96..5f52d6f9e 100644 --- a/scripts/gen_build_prop.py +++ b/scripts/gen_build_prop.py @@ -608,7 +608,7 @@ def main(): build_product_prop(args) case "vendor": build_vendor_prop(args) - case "system_dlkm" | "vendor_dlkm" | "odm_dlkm": + case "system_dlkm" | "vendor_dlkm" | "odm_dlkm" | "bootimage": build_prop(args, gen_build_info=False, gen_common_build_props=True, variables=[]) case _: sys.exit(f"not supported partition {args.partition}") -- cgit v1.2.3-59-g8ed1b