diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bootm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/bootm.c b/cmd/bootm.c index f5e91f40a9..16fdea5507 100644 --- a/cmd/bootm.c +++ b/cmd/bootm.c @@ -275,6 +275,12 @@ static int image_info(ulong addr) puts("OK\n"); return 0; #endif +#if defined(CONFIG_ANDROID_BOOT_IMAGE) + case IMAGE_FORMAT_ANDROID: + puts(" Android image found\n"); + android_print_contents(hdr); + return 0; +#endif #if defined(CONFIG_FIT) case IMAGE_FORMAT_FIT: puts(" FIT image found\n"); |