diff options
author | 2024-12-10 20:20:59 +0000 | |
---|---|---|
committer | 2024-12-10 20:20:59 +0000 | |
commit | 078347368de279b41a37b3599e24e60014892fef (patch) | |
tree | 639e0b254db446e8586a89d8daabbcc3d85cf4dd /filesystem/filesystem.go | |
parent | 2713018567078507a23f49d7ba407f052ff63d85 (diff) |
Revert "Remove unassigned event log tags feature"
Revert submission 3400623-remove_unassigned_event_log_tags
Reason for revert: Droidmonitor created revert due to b/383362497. Will be verifying through ABTD before submission.
Reverted changes: /q/submissionid:3400623-remove_unassigned_event_log_tags
Change-Id: I1378364ff5f9c6f09f47d72c104ae603e0d2063a
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r-- | filesystem/filesystem.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index cd3808c56..b9cb0769a 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -878,7 +878,8 @@ func (f *filesystem) buildEventLogtagsFile(ctx android.ModuleContext, builder *a eventLogtagsPath := etcPath.Join(ctx, "event-log-tags") builder.Command().Text("mkdir").Flag("-p").Text(etcPath.String()) cmd := builder.Command().BuiltTool("merge-event-log-tags"). - FlagWithArg("-o ", eventLogtagsPath.String()) + FlagWithArg("-o ", eventLogtagsPath.String()). + FlagWithInput("-m ", android.MergedLogtagsPath(ctx)) for _, path := range android.SortedKeys(logtagsFilePaths) { cmd.Text(path) |