summaryrefslogtreecommitdiff
path: root/filesystem/filesystem.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-03-04 19:04:28 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-04 19:04:28 -0800
commit191dee0933fee8451fb571120f888c1cca06bcd3 (patch)
tree8b6bc65d64a1c7711b83ce4e8c5e717f9a7001e2 /filesystem/filesystem.go
parentd183d9f24bf0e9b2b59330a6fa1346bbbef7b1ce (diff)
parent4100dd081e6abd41e12eb000fdbd3785ac5bc4c3 (diff)
Merge changes I1bfc1a73,I52b9c9ff into main
* changes: Generate apex_info.pb,care_map.pb,vbmeta_digest.txt in target_files Create a partial implementation of $PRODUCT_OUT/misc_info.txt
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r--filesystem/filesystem.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go
index fc480e6f0..35fdd00a3 100644
--- a/filesystem/filesystem.go
+++ b/filesystem/filesystem.go
@@ -436,6 +436,8 @@ type FilesystemInfo struct {
FilesystemConfig android.Path
Owners []InstalledModuleInfo
+
+ UseAvb bool
}
// FullInstallPathInfo contains information about the "full install" paths of all the files
@@ -680,6 +682,7 @@ func (f *filesystem) GenerateAndroidBuildActions(ctx android.ModuleContext) {
SelinuxFc: f.selinuxFc,
FilesystemConfig: f.generateFilesystemConfig(ctx, rootDir, rebasedDir),
Owners: f.gatherOwners(specs),
+ UseAvb: proptools.Bool(f.properties.Use_avb),
}
android.SetProvider(ctx, FilesystemProvider, fsInfo)