summaryrefslogtreecommitdiff
path: root/filesystem/filesystem.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-09-12 00:25:21 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-09-12 00:25:21 +0000
commit6fab06d56b14c99abfce9856e2e38f267e4620aa (patch)
treee36b440e82259d11660541215fc270d78fe7e3cd /filesystem/filesystem.go
parent7351875acb4b2a56372e51522fd9b0c07e22085b (diff)
parent2cc42505d91aca2c9fc75b904eed69d7f4210af6 (diff)
Merge "Soong system image may update the $PRODUCT_OUT" into main
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r--filesystem/filesystem.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go
index a8f97e3b7..0b390624f 100644
--- a/filesystem/filesystem.go
+++ b/filesystem/filesystem.go
@@ -136,9 +136,6 @@ type filesystemProperties struct {
// Install aconfig_flags.pb file for the modules installed in this partition.
Gen_aconfig_flags_pb *bool
- // Update the Base_dir of the $PRODUCT_OUT directory with the packaging files.
- Update_product_out *bool
-
Fsverity fsverityProperties
}
@@ -335,7 +332,7 @@ func (f *filesystem) copyPackagingSpecs(ctx android.ModuleContext, builder *andr
}
func (f *filesystem) copyFilesToProductOut(ctx android.ModuleContext, builder *android.RuleBuilder, rebasedDir android.OutputPath) {
- if !proptools.Bool(f.properties.Update_product_out) {
+ if f.Name() != ctx.Config().SoongDefinedSystemImage() {
return
}
installPath := android.PathForModuleInPartitionInstall(ctx, f.partitionName())