summaryrefslogtreecommitdiff
path: root/common/spl
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-10-21 03:22:43 +0300
committerTom Rini <trini@konsulko.com>2022-10-31 18:01:31 +0300
commit6e55b114aa0b8feff4e7a15a98842f9eaa87407d (patch)
treeed105ea91812ad268203c17b93a8784402484930 /common/spl
parentec7e8dad26cc0e3c9f4d1576997c0bbbc7e968e6 (diff)
downloadu-boot-6e55b114aa0b8feff4e7a15a98842f9eaa87407d.tar.xz
spl: Add a separate silence option for SPL
Add an option to allow silent console to be controlled separately in SPL, so that boot progress can be shown. Disable it by default for sandbox since it is useful to see what is going on there. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl')
-rw-r--r--common/spl/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 91b4adc400..4635e77e97 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -703,7 +703,7 @@ static int boot_from_devices(struct spl_image_info *spl_image,
if (CONFIG_IS_ENABLED(SHOW_ERRORS))
ret = -ENXIO;
loader = spl_ll_find_loader(bootdev);
- if (!IS_ENABLED(CONFIG_SILENT_CONSOLE)) {
+ if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) {
if (loader)
printf("Trying to boot from %s\n",
spl_loader_name(loader));