Lines Matching refs:images
60 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument
63 ulong dt = (ulong)images->ft_addr; in boot_jump_linux()
64 ulong rd_start = images->initrd_start; in boot_jump_linux()
65 ulong cmdline = images->cmdline_start; in boot_jump_linux()
68 thekernel = (void (*)(char *, ulong, ulong))images->ep; in boot_jump_linux()
96 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument
98 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_prep_linux()
100 if (image_setup_linux(images)) { in boot_prep_linux()
108 bootm_headers_t *images) in do_bootm_linux() argument
110 images->cmdline_start = (ulong)env_get("bootargs"); in do_bootm_linux()
117 boot_prep_linux(images); in do_bootm_linux()
122 boot_jump_linux(images, flag); in do_bootm_linux()
126 boot_prep_linux(images); in do_bootm_linux()
127 boot_jump_linux(images, flag); in do_bootm_linux()