diff options
| author | 2021-04-22 16:40:24 +0000 | |
|---|---|---|
| committer | 2021-04-22 16:40:24 +0000 | |
| commit | 4d48aa52559f99da1a03ef6e055ec95f9953287f (patch) | |
| tree | 59a4c099d7319a3cd0153e0a2d1872e350a5e13e /rust/image.go | |
| parent | 80c2377089863152a55215c3295d2fcf23d0582e (diff) | |
| parent | 836a8f3d613a51d496740dcefaf5b66a4cb86ba2 (diff) | |
Merge "Revert^2 "Add debug ramdisk variant""
Diffstat (limited to 'rust/image.go')
| -rw-r--r-- | rust/image.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/image.go b/rust/image.go index 7eb49d962..900842ec8 100644 --- a/rust/image.go +++ b/rust/image.go @@ -97,6 +97,10 @@ func (mod *Module) RamdiskVariantNeeded(android.BaseModuleContext) bool { return mod.InRamdisk() } +func (mod *Module) DebugRamdiskVariantNeeded(ctx android.BaseModuleContext) bool { + return false +} + func (mod *Module) RecoveryVariantNeeded(android.BaseModuleContext) bool { return mod.InRecovery() } |