diff options
author | 2025-03-21 15:41:24 -0700 | |
---|---|---|
committer | 2025-03-21 15:41:24 -0700 | |
commit | 035f6c814124cf1e3160f503a423d7519e60cbff (patch) | |
tree | 25b88de3d8e818e3bddec639d1d52d775f2e2fb3 /filesystem/android_device.go | |
parent | 273bf6e9b6e00141ad726b532032b5a290d67ad7 (diff) | |
parent | 9329c67e4535f7545529aeae96064c1fbbc887dd (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/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/filesystem/android_device.go b/filesystem/android_device.go index aa7100887..b96c5eae3 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -395,6 +395,13 @@ func (a *androidDevice) distFiles(ctx android.ModuleContext) { if a.deviceProps.Android_info != nil { ctx.DistForGoal("droidcore-unbundled", android.PathForModuleSrc(ctx, *a.deviceProps.Android_info)) } + if a.miscInfo != nil { + ctx.DistForGoal("droidcore-unbundled", a.miscInfo) + if a.partitionProps.Super_partition_name != nil { + ctx.DistForGoalWithFilename("dist_files", a.miscInfo, "super_misc_info.txt") + } + } + } } |