summaryrefslogtreecommitdiff
path: root/filesystem/filesystem.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-03-21 15:41:24 -0700
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-21 15:41:24 -0700
commit035f6c814124cf1e3160f503a423d7519e60cbff (patch)
tree25b88de3d8e818e3bddec639d1d52d775f2e2fb3 /filesystem/filesystem.go
parent273bf6e9b6e00141ad726b532032b5a290d67ad7 (diff)
parent9329c67e4535f7545529aeae96064c1fbbc887dd (diff)
Merge changes I32e163b9,Ie2d4ad83 into main
* changes: Dist Soong built misc_info.txt in Soong only builds Do not write avb_*_key_path of android_filesystem to misc_info.txt
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r--filesystem/filesystem.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go
index d53cc816e..fd1c784ec 100644
--- a/filesystem/filesystem.go
+++ b/filesystem/filesystem.go
@@ -1182,10 +1182,6 @@ func (f *filesystem) buildPropFileForMiscInfo(ctx android.ModuleContext) android
if proptools.Bool(f.properties.Use_avb) {
addStr("avb_"+f.partitionName()+"_hashtree_enable", "true")
- if f.properties.Avb_private_key != nil {
- key := android.PathForModuleSrc(ctx, *f.properties.Avb_private_key)
- addStr("avb_"+f.partitionName()+"_key_path", key.String())
- }
addStr("avb_"+f.partitionName()+"_add_hashtree_footer_args", strings.TrimSpace(f.getAvbAddHashtreeFooterArgs(ctx)))
}