diff options
author | 2024-12-19 23:40:02 -0800 | |
---|---|---|
committer | 2024-12-19 23:40:02 -0800 | |
commit | 7d89e66f1e99f3c7fa78034e62fedd214a00ec6b (patch) | |
tree | 9602250981e8265a404fde6d4fe07cb10743c9d3 /fsgen/filesystem_creator.go | |
parent | 1a478e5b01ab2efa05754c932e11d5f2a352f93d (diff) |
Revert "Make vendor_ramdisk partition install recovery partition..."
Revert submission 3425159
Reason for revert: <Reason for revert: Dorid monitor: Likely culprit for b/385262936 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.>
Reverted changes: /q/submissionid:3425159
Change-Id: I83d6af532bd76c4e10fcedc3d49b4c43efa0ecfe
Diffstat (limited to 'fsgen/filesystem_creator.go')
-rw-r--r-- | fsgen/filesystem_creator.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/fsgen/filesystem_creator.go b/fsgen/filesystem_creator.go index faf3ee236..59470d3fc 100644 --- a/fsgen/filesystem_creator.go +++ b/fsgen/filesystem_creator.go @@ -78,7 +78,7 @@ func filesystemCreatorFactory() android.Module { return module } -func generatedPartitions(ctx android.EarlyModuleContext) []string { +func generatedPartitions(ctx android.LoadHookContext) []string { partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse generatedPartitions := []string{"system"} if ctx.DeviceConfig().SystemExtPath() == "system_ext" { @@ -373,10 +373,6 @@ func partitionSpecificFsProps(ctx android.EarlyModuleContext, fsProps *filesyste fsProps.Security_patch = proptools.StringPtr(partitionVars.VendorDlkmSecurityPatch) case "odm_dlkm": fsProps.Security_patch = proptools.StringPtr(partitionVars.OdmDlkmSecurityPatch) - case "vendor_ramdisk": - if android.InList("recovery", generatedPartitions(ctx)) { - fsProps.Include_files_of = []string{generatedModuleNameForPartition(ctx.Config(), "recovery")} - } } } |