1 // SPDX-License-Identifier: GPL-2.0+
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16 * Board-specific Platform code can reimplement show_boot_progress () if needed
18 __weak void show_boot_progress(int val) {}
20 static void run_preboot_environment_command(void)
25 p = env_get("preboot");
29 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
30 prev = disable_ctrlc(1); /* disable Ctrl-C checking */
32 run_command_list(p, -1, 0);
34 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
35 disable_ctrlc(prev); /* restore Ctrl-C checking */
37 #endif /* CONFIG_PREBOOT */
40 /* We come here after U-Boot is initialised and ready to process commands */
45 bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop");
47 if (IS_ENABLED(CONFIG_VERSION_VARIABLE))
48 env_set("ver", version_string); /* set version variable */
52 run_preboot_environment_command();
54 if (IS_ENABLED(CONFIG_UPDATE_TFTP))
55 update_tftp(0UL, NULL, NULL);
57 s = bootdelay_process();
58 if (cli_process_fdt(&s))
59 cli_secure_boot_cmd(s);
64 panic("No CLI available");