diff options
Diffstat (limited to 'filesystem/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/filesystem/android_device.go b/filesystem/android_device.go index c8c535475..8332bc5f3 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -378,6 +378,7 @@ func (a *androidDevice) copyImagesToTargetZip(ctx android.ModuleContext, builder if info, ok := android.OtherModuleProvider(ctx, superPartition, SuperImageProvider); ok { for _, partition := range android.SortedKeys(info.SubImageInfo) { builder.Command().Textf("cp ").Input(info.SubImageInfo[partition].Output).Textf(" %s/IMAGES/", targetFilesDir.String()) + builder.Command().Textf("cp ").Input(info.SubImageInfo[partition].MapFile).Textf(" %s/IMAGES/", targetFilesDir.String()) } } else { ctx.ModuleErrorf("Super partition %s does set SuperImageProvider\n", superPartition.Name()) |