diff options
| author | Florian Mayer <fmayer@google.com> | 2021-04-22 16:38:47 +0000 |
|---|---|---|
| committer | Florian Mayer <fmayer@google.com> | 2021-04-22 16:38:47 +0000 |
| commit | 836a8f3d613a51d496740dcefaf5b66a4cb86ba2 (patch) | |
| tree | 2decc1d56a9b58185b550f6a952911e9596ddf4d /sh | |
| parent | 78ea2f5eacd31b66ab148cd76bd87763b7745bf3 (diff) | |
Revert^2 "Add debug ramdisk variant"
78ea2f5eacd31b66ab148cd76bd87763b7745bf3
Change-Id: I6a6a2ee82e2807045364bab105ec03a1934b411f
Diffstat (limited to 'sh')
| -rw-r--r-- | sh/sh_binary.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sh/sh_binary.go b/sh/sh_binary.go index 662338133..42d5680f1 100644 --- a/sh/sh_binary.go +++ b/sh/sh_binary.go @@ -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() } |
