search for: err_bootfailed

Displaying 3 results from an estimated 3 matches for "err_bootfailed".

2009 Aug 08
0
[PATCH for SYSLINUX 4] pxelinux: remove obsolete err_* messages
...-by: Sebastian Herbszt <herbszt at gmx.de> diff --git a/core/pxelinux.asm b/core/pxelinux.asm index 34121e5..3cf22f4 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -654,11 +654,7 @@ copyright_str db ' Copyright (C) 1994-' db ' H. Peter Anvin et al', CR, LF, 0 err_bootfailed db CR, LF, 'Boot failed: press a key to retry, or wait for reset...', CR, LF, 0 bailmsg equ err_bootfailed -err_nopxe db "No !PXE or PXENV+ API found; we're dead...", CR, LF, 0 -err_pxefailed db 'PXE API call failed, error ', 0 -err_udpinit db 'Failed to initiali...
2025 Apr 21
0
[PATCH] Improve EFI console logging
...ewline is added in efi_main() and not in load_env32() to be consistent with how it's implemented under BIOS. The load_env32() function is shared between EFI and BIOS, and under BIOS, the newline is also added as part of the following error message which tells the user that boot failed, e.g. the err_bootfailed string in core/diskfs.inc. Only the writechr() update and newline addition is strictly neccessary to fix the bug this bug report is about, but the other updates make the screen output process more efficient and improve the usability of the generated logs with text editors. With this patch, the...
2025 Apr 22
0
[PATCH] Improve EFI console logging
...t >> in load_env32() to be consistent with how it's implemented under BIOS. >> The load_env32() function is shared between EFI and BIOS, and under >> BIOS, the newline is also added as part of the following error message >> which tells the user that boot failed, e.g. the err_bootfailed string >> in core/diskfs.inc. >> >> >> Only the writechr() update and newline addition is strictly neccessary >> to fix the bug this bug report is about, but the other updates make >> the screen output process more efficient and improve the usability >> of...