diff options
Diffstat (limited to 'cmd/booti.c')
-rw-r--r-- | cmd/booti.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/booti.c b/cmd/booti.c index a6c7db272c5..dc73c83f0db 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -95,7 +95,9 @@ static int booti_start(struct cmd_tbl *cmdtp, int flag, int argc, * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not * have a header that provide this informaiton. */ - if (bootm_find_images(flag, argc, argv, relocated_addr, image_size)) + if (bootm_find_images(image_load_addr, argc > 1 ? argv[1] : NULL, + argc > 2 ? argv[2] : NULL, relocated_addr, + image_size)) return 1; return 0; |