aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2020-05-19 23:39:43 +0200
committerKevin O'Connor <kevin@koconnor.net>2020-05-21 13:38:27 -0400
commit232b1c15c8c2144ca9b51aed639c1460e6083d74 (patch)
tree514a9e53fd9e483f9c16e16c2a1f5fa422b89eed
parentc61193d3ec2e29c0764ce93ad17cea259c57faad (diff)
downloadseabios-hppa-232b1c15c8c2144ca9b51aed639c1460e6083d74.zip
seabios-hppa-232b1c15c8c2144ca9b51aed639c1460e6083d74.tar.gz
seabios-hppa-232b1c15c8c2144ca9b51aed639c1460e6083d74.tar.bz2
boot: Log, if boot menu is skipped
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
-rw-r--r--src/boot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/boot.c b/src/boot.c
index a395347..03bd251 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -692,6 +692,7 @@ interactive_bootmenu(void)
// skip menu if only one boot device and no TPM
if ((show_boot_menu == 2) && (NULL == BootList.first->next) && !tpm_can_show_menu()) {
+ dprintf(1, "Only one boot device present. Skip boot menu.\n");
printf("\n");
return;
}