diff options
Diffstat (limited to 'filesystem/filesystem.go')
| -rw-r--r-- | filesystem/filesystem.go | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index 9756b821b..ca0a7f7c2 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -264,7 +264,10 @@ func (f *filesystem) partitionName() string {  func (f *filesystem) filterInstallablePackagingSpec(ps android.PackagingSpec) bool {  	// Filesystem module respects the installation semantic. A PackagingSpec from a module with  	// IsSkipInstall() is skipped. -	return !ps.SkipInstall() && (ps.Partition() == f.PartitionType()) +	if proptools.Bool(f.properties.Is_auto_generated) { // TODO (spandandas): Remove this. +		return !ps.SkipInstall() && (ps.Partition() == f.PartitionType()) +	} +	return !ps.SkipInstall()  }  var pctx = android.NewPackageContext("android/soong/filesystem") |