summaryrefslogtreecommitdiff
path: root/filesystem/system_image.go
diff options
context:
space:
mode:
author Pechetty Sravani (xWF) <pechetty@google.com> 2024-10-21 02:17:40 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-10-21 02:17:40 +0000
commit02adec80da9796d685765dfb2ee8e96518072d3c (patch)
treee63e72290487fdaac89902be34d568cf154af6b4 /filesystem/system_image.go
parent8a49643e6b727490898ea94b41667eecf24685f2 (diff)
Revert "Use a partition packaging spec filter for android_filesystem"
This reverts commit 8a49643e6b727490898ea94b41667eecf24685f2. Reason for revert: <DroidMonitor created revert due to b/374395492.Will be verified through ABTD for standard investigation> Change-Id: I4494f15f1681bf2456439151771e84c7d1f221b7
Diffstat (limited to 'filesystem/system_image.go')
-rw-r--r--filesystem/system_image.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem/system_image.go b/filesystem/system_image.go
index 7dbf98644..57239ae3f 100644
--- a/filesystem/system_image.go
+++ b/filesystem/system_image.go
@@ -103,6 +103,6 @@ func (s *systemImage) buildLinkerConfigFile(ctx android.ModuleContext, root andr
// partition. Note that "apex" module installs its contents to "apex"(fake partition) as well
// for symbol lookup by imitating "activated" paths.
func (s *systemImage) filterPackagingSpec(ps android.PackagingSpec) bool {
- return !ps.SkipInstall() &&
+ return s.filesystem.filterInstallablePackagingSpec(ps) &&
(ps.Partition() == "system" || ps.Partition() == "root")
}