summaryrefslogtreecommitdiff
path: root/cmd/booti.c
diff options
context:
space:
mode:
authorCédric Schieli <cschieli@gmail.com>2017-01-23 15:51:45 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-24 15:35:55 (GMT)
commit4943dc2f1977cf89297b87f93f96ad4d7f09d24d (patch)
tree5b7dd85d13c861006d5649354f456bb5d64a5782 /cmd/booti.c
parent9b6ef528d0dd83ce4b09adb559e5336b107d5654 (diff)
downloadu-boot-fsl-qoriq-4943dc2f1977cf89297b87f93f96ad4d7f09d24d.tar.xz
bootz/booti: relocate ramdisk if CONFIG_SYS_BOOT_RAMDISK_HIGH set
In commit c2e7e72, the ramdisk relocation code was moved from image_setup_linux to do_bootm, leaving the bootz and booti cases broken. This patch fixes both by adding the BOOTM_STATE_RAMDISK state in their call to do_bootm_states if CONFIG_SYS_BOOT_RAMDISK_HIGH is set. Signed-off-by: Cédric Schieli <cschieli@gmail.com> Reviewed-by: Rick Altherr <raltherr@google.com> Tested-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'cmd/booti.c')
-rw-r--r--cmd/booti.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/booti.c b/cmd/booti.c
index 6c1c998..2d879f3 100644
--- a/cmd/booti.c
+++ b/cmd/booti.c
@@ -132,6 +132,9 @@ int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
images.os.os = IH_OS_LINUX;
ret = do_bootm_states(cmdtp, flag, argc, argv,
+#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
+ BOOTM_STATE_RAMDISK |
+#endif
BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
BOOTM_STATE_OS_GO,
&images, 1);