mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 17:52:07 +02:00
main: Use conditional run_preboot_environment_command()
The function name indicates that it does something, but its entire operation is actually condition on a CONFIG. Move the condition outside the function so this is clearer, and use if() instead of #ifdef, like the reset of the file. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -19,7 +19,6 @@ __weak void show_boot_progress(int val) {}
|
|||||||
|
|
||||||
static void run_preboot_environment_command(void)
|
static void run_preboot_environment_command(void)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_PREBOOT
|
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
p = env_get("preboot");
|
p = env_get("preboot");
|
||||||
@@ -34,7 +33,6 @@ static void run_preboot_environment_command(void)
|
|||||||
if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
|
if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
|
||||||
disable_ctrlc(prev); /* restore Ctrl-C checking */
|
disable_ctrlc(prev); /* restore Ctrl-C checking */
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_PREBOOT */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We come here after U-Boot is initialised and ready to process commands */
|
/* We come here after U-Boot is initialised and ready to process commands */
|
||||||
@@ -49,7 +47,8 @@ void main_loop(void)
|
|||||||
|
|
||||||
cli_init();
|
cli_init();
|
||||||
|
|
||||||
run_preboot_environment_command();
|
if (IS_ENABLED(CONFIG_USE_PREBOOT))
|
||||||
|
run_preboot_environment_command();
|
||||||
|
|
||||||
if (IS_ENABLED(CONFIG_UPDATE_TFTP))
|
if (IS_ENABLED(CONFIG_UPDATE_TFTP))
|
||||||
update_tftp(0UL, NULL, NULL);
|
update_tftp(0UL, NULL, NULL);
|
||||||
|
Reference in New Issue
Block a user