summaryrefslogtreecommitdiff
path: root/filesystem
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-03-10 15:42:54 -0700
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-10 15:42:54 -0700
commitf41d0e09c722a8d0bc79954402d03d9ea495b97b (patch)
tree0725af967df21deabc47d1f91a3beb7104d31a32 /filesystem
parent6994a512574cc59879471980a63472ff5802a7df (diff)
parent9284f67fe48e32bb43736942f4ec4a5f8b1d905f (diff)
Merge "Remove ab_update=true from dynamic_partition_list.txt" into main
Diffstat (limited to 'filesystem')
-rw-r--r--filesystem/super_image.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/filesystem/super_image.go b/filesystem/super_image.go
index 9e4412c13..51080258c 100644
--- a/filesystem/super_image.go
+++ b/filesystem/super_image.go
@@ -200,6 +200,7 @@ func (s *superImage) buildMiscInfo(ctx android.ModuleContext) (android.Path, and
miscInfoString.WriteString(value)
miscInfoString.WriteRune('\n')
}
+ addStr("ab_update", strconv.FormatBool(proptools.Bool(s.properties.Ab_update)))
subImageInfo := make(map[string]FilesystemInfo)
var deps android.Paths
@@ -329,8 +330,6 @@ func (s *superImage) dumpDynamicPartitionInfo(ctx android.ModuleContext, sb *str
addStr("super_partition_groups", strings.Join(groups, " "))
addStr("dynamic_partition_list", strings.Join(partitionList, " "))
- addStr("ab_update", strconv.FormatBool(proptools.Bool(s.properties.Ab_update)))
-
if proptools.Bool(s.properties.Virtual_ab.Enable) {
addStr("virtual_ab", "true")
if proptools.Bool(s.properties.Virtual_ab.Retrofit) {