Revert^2 "Add debug ramdisk variant"

78ea2f5eac

Change-Id: I6a6a2ee82e2807045364bab105ec03a1934b411f
This commit is contained in:
Florian Mayer
2021-04-22 16:38:47 +00:00
parent 78ea2f5eac
commit 836a8f3d61
12 changed files with 119 additions and 2 deletions

View File

@@ -210,6 +210,10 @@ func (s *ShBinary) VendorRamdiskVariantNeeded(ctx android.BaseModuleContext) boo
return proptools.Bool(s.properties.Vendor_ramdisk_available) || s.ModuleBase.InstallInVendorRamdisk()
}
func (s *ShBinary) DebugRamdiskVariantNeeded(ctx android.BaseModuleContext) bool {
return false
}
func (s *ShBinary) RecoveryVariantNeeded(ctx android.BaseModuleContext) bool {
return proptools.Bool(s.properties.Recovery_available) || s.ModuleBase.InstallInRecovery()
}