diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2020-05-19 23:39:43 +0200 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-21 13:38:27 -0400 |
commit | 232b1c15c8c2144ca9b51aed639c1460e6083d74 (patch) | |
tree | 514a9e53fd9e483f9c16e16c2a1f5fa422b89eed | |
parent | c61193d3ec2e29c0764ce93ad17cea259c57faad (diff) | |
download | seabios-232b1c15c8c2144ca9b51aed639c1460e6083d74.tar.gz |
boot: Log, if boot menu is skipped
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
-rw-r--r-- | src/boot.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; } |