summaryrefslogtreecommitdiff
path: root/fsgen
diff options
context:
space:
mode:
author Spandan Das <spandandas@google.com> 2025-02-13 14:39:04 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-02-13 14:39:04 -0800
commit5fb06582f698f8bfbb71b5c83d5a529d83a1e94c (patch)
tree90e42cd0fa6e7a05ccc936a0bd43d3eab3e38bd9 /fsgen
parent5deabc3a24904e0af210b190b75528da8d5bdf29 (diff)
parent0094807f15d345435811f40687d11e87e182c4d5 (diff)
Merge "Add Ab_ota_postinstall_config prop to android_device" into main
Diffstat (limited to 'fsgen')
-rw-r--r--fsgen/filesystem_creator.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/fsgen/filesystem_creator.go b/fsgen/filesystem_creator.go
index 9217e1c33..e9626a272 100644
--- a/fsgen/filesystem_creator.go
+++ b/fsgen/filesystem_creator.go
@@ -381,9 +381,10 @@ func (f *filesystemCreator) createDeviceModule(
partitionProps.Vbmeta_partitions = vbmetaPartitions
deviceProps := &filesystem.DeviceProperties{
- Main_device: proptools.BoolPtr(true),
- Ab_ota_updater: proptools.BoolPtr(ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaUpdater),
- Ab_ota_partitions: ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaPartitions,
+ Main_device: proptools.BoolPtr(true),
+ Ab_ota_updater: proptools.BoolPtr(ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaUpdater),
+ Ab_ota_partitions: ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaPartitions,
+ Ab_ota_postinstall_config: ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaPostInstallConfig,
}
if bootloader, ok := f.createBootloaderFilegroup(ctx); ok {
deviceProps.Bootloader = proptools.StringPtr(":" + bootloader)