diff options
author | 2025-03-21 21:02:46 +0000 | |
---|---|---|
committer | 2025-03-21 21:02:46 +0000 | |
commit | f68322e3286becff1d006f557e5dc71afadcf26f (patch) | |
tree | 17a8871820ed1c19c3a4bcfbbe43a4428fc4e622 /filesystem | |
parent | a85dbb2bef1f34f0c08d1b418ca699aed43e91f9 (diff) |
Do not write avb_*_key_path of android_filesystem to misc_info.txt
This matches the make packaging system implementaton.
avb_*_key_path of bootimg, vbmeta and system_other will continue to be
written to Soong built misc_info.txt
Bug: 398036609
Test: Built and diff'd locally
Change-Id: Ie2d4ad8362ce7f44d473ef185562c60718e173b3
Diffstat (limited to 'filesystem')
-rw-r--r-- | filesystem/filesystem.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index ad4366b2e..61b731ab2 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))) } |