diff options
author | 2024-11-12 15:13:37 -0800 | |
---|---|---|
committer | 2024-11-13 11:14:14 -0800 | |
commit | 4385d3545cc7bf5bd6eb96ee01f68acece883a28 (patch) | |
tree | d0e47ec13fda6c4d6c45b27c84e0d7df4d26069d /Android.bp | |
parent | 059af370890f6b1f27ee956bc40fffb8496f8194 (diff) |
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
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 976362278..1219c626a 100644 --- a/Android.bp +++ b/Android.bp @@ -234,3 +234,12 @@ build_prop { relative_install_path: "etc", // odm_dlkm/etc/build.prop visibility: ["//visibility:private"], } + +build_prop { + name: "ramdisk-build.prop", + stem: "build.prop", + ramdisk: true, + product_config: ":product_config", + relative_install_path: "etc/ramdisk", // ramdisk/system/etc/ramdisk/build.prop + visibility: ["//visibility:private"], +} |