diff options
| -rw-r--r-- | pxelinux.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pxelinux.asm b/pxelinux.asm index c49db37a..ac986d3a 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -838,6 +838,8 @@ config_scan: dec di loop .tryagain + mov si,err_noconfig + call writestr jmp kaboom .success: @@ -2352,6 +2354,7 @@ 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 initialize UDP stack', CR, LF, 0 +err_noconfig db 'Unable to locate configuration file', CR, LF, 0 err_oldtftp db 'TFTP server does not support the tsize option', CR, LF, 0 found_pxenv db 'Found PXENV+ structure', CR, LF, 0 using_pxenv_msg db 'Old PXE API detected, using PXENV+ structure', CR, LF, 0 |
