summaryrefslogtreecommitdiff
path: root/filesystem/filesystem.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-03-04 04:11:55 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-04 04:11:55 -0800
commitbc917d9f15858dbf8d7d936173a5c767215e74b8 (patch)
treed1a788f253a48ea82f5d0ecf9eccc795be1dcfab /filesystem/filesystem.go
parent570a6d2c5ad018e10df3c8d0f8e7d9ec70ecf7af (diff)
parentd5df518597aaa1a7e7d8ad44c854c1e4e73dc05d (diff)
Merge changes from topic "revive_system_ext_aconfig_container" into main
* changes: Soong filesystem generates aconfig files for subpartitions Revert "Treat system_ext as system container"
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r--filesystem/filesystem.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go
index 725786897..fc480e6f0 100644
--- a/filesystem/filesystem.go
+++ b/filesystem/filesystem.go
@@ -208,11 +208,6 @@ type FilesystemProperties struct {
// Install aconfig_flags.pb file for the modules installed in this partition.
Gen_aconfig_flags_pb *bool
- // List of names of other filesystem partitions to import their aconfig flags from.
- // This is used for the system partition to import system_ext's aconfig flags, as currently
- // those are considered one "container": aosp/3261300
- Import_aconfig_flags_from []string
-
Fsverity fsverityProperties
// If this property is set to true, the filesystem will call ctx.UncheckedModule(), causing
@@ -359,9 +354,6 @@ func (f *filesystem) DepsMutator(ctx android.BottomUpMutatorContext) {
if f.properties.Android_filesystem_deps.System_ext != nil {
ctx.AddDependency(ctx.Module(), interPartitionDependencyTag, proptools.String(f.properties.Android_filesystem_deps.System_ext))
}
- for _, partition := range f.properties.Import_aconfig_flags_from {
- ctx.AddDependency(ctx.Module(), importAconfigDependencyTag, partition)
- }
for _, partition := range f.properties.Include_files_of {
ctx.AddDependency(ctx.Module(), interPartitionInstallDependencyTag, partition)
}