2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
2002-12-03 21:28:10 +00:00
|
|
|
/* #define DEBUG */
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#include <common.h>
|
2014-04-10 20:01:28 -06:00
|
|
|
#include <autoboot.h>
|
2020-05-10 11:40:00 -06:00
|
|
|
#include <bootstage.h>
|
2014-04-10 20:01:25 -06:00
|
|
|
#include <cli.h>
|
2019-11-14 12:57:43 -07:00
|
|
|
#include <command.h>
|
2015-11-08 23:47:45 -07:00
|
|
|
#include <console.h>
|
2019-08-01 09:46:51 -06:00
|
|
|
#include <env.h>
|
2019-12-28 10:44:39 -07:00
|
|
|
#include <init.h>
|
2020-05-10 11:39:56 -06:00
|
|
|
#include <net.h>
|
2013-05-15 06:23:59 +00:00
|
|
|
#include <version.h>
|
2020-11-17 09:27:56 +09:00
|
|
|
#include <efi_loader.h>
|
2003-08-05 17:43:17 +00:00
|
|
|
|
2014-04-10 20:01:33 -06:00
|
|
|
static void run_preboot_environment_command(void)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
2017-08-03 12:22:12 -06:00
|
|
|
p = env_get("preboot");
|
2013-05-15 06:23:56 +00:00
|
|
|
if (p != NULL) {
|
2018-11-25 20:05:54 -07:00
|
|
|
int prev = 0;
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
|
|
|
|
prev = disable_ctrlc(1); /* disable Ctrl-C checking */
|
2013-05-15 06:23:56 +00:00
|
|
|
|
|
|
|
run_command_list(p, -1, 0);
|
|
|
|
|
2018-11-25 20:05:54 -07:00
|
|
|
if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
|
|
|
|
disable_ctrlc(prev); /* restore Ctrl-C checking */
|
2013-05-15 06:23:56 +00:00
|
|
|
}
|
2014-04-10 20:01:33 -06:00
|
|
|
}
|
|
|
|
|
2014-04-10 20:01:35 -06:00
|
|
|
/* We come here after U-Boot is initialised and ready to process commands */
|
2014-04-10 20:01:33 -06:00
|
|
|
void main_loop(void)
|
|
|
|
{
|
2014-04-10 20:01:35 -06:00
|
|
|
const char *s;
|
|
|
|
|
2014-04-10 20:01:33 -06:00
|
|
|
bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop");
|
|
|
|
|
2018-11-25 20:05:54 -07:00
|
|
|
if (IS_ENABLED(CONFIG_VERSION_VARIABLE))
|
|
|
|
env_set("ver", version_string); /* set version variable */
|
2014-04-10 20:01:33 -06:00
|
|
|
|
2014-04-10 20:01:34 -06:00
|
|
|
cli_init();
|
2014-04-10 20:01:33 -06:00
|
|
|
|
2019-07-20 20:51:11 -06:00
|
|
|
if (IS_ENABLED(CONFIG_USE_PREBOOT))
|
|
|
|
run_preboot_environment_command();
|
2013-05-15 06:23:56 +00:00
|
|
|
|
2018-11-25 20:05:54 -07:00
|
|
|
if (IS_ENABLED(CONFIG_UPDATE_TFTP))
|
|
|
|
update_tftp(0UL, NULL, NULL);
|
2013-05-15 06:23:56 +00:00
|
|
|
|
2020-11-17 09:27:56 +09:00
|
|
|
if (IS_ENABLED(CONFIG_EFI_CAPSULE_ON_DISK_EARLY))
|
|
|
|
efi_launch_capsules();
|
|
|
|
|
2014-04-10 20:01:35 -06:00
|
|
|
s = bootdelay_process();
|
|
|
|
if (cli_process_fdt(&s))
|
|
|
|
cli_secure_boot_cmd(s);
|
|
|
|
|
|
|
|
autoboot_command(s);
|
2014-04-10 20:01:34 -06:00
|
|
|
|
2014-04-10 20:01:26 -06:00
|
|
|
cli_loop();
|
2016-03-13 19:07:32 -06:00
|
|
|
panic("No CLI available");
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|