Displaying 1 result from an estimated 1 matches for "pxelinux_run".
2009 Aug 09
2
real serial port output from pxelinux.0
...oading di/initrd.gz...ready.
</screenshot>
Being curious why only the banner is shown, I dived in core/pxelinux.asm.
Modifing the banner string was easy
and did prove that my modified pxelinux.0 was being run.
Then it did took me several hours of in loop of
edit-compile-client_reboot-dhcp-pxelinux_run
to find out that I was modifing death code.
With <patch>
--- a/core/pxelinux.asm
+++ b/core/pxelinux.asm
@@ -259,15 +259,6 @@ _start1:
%include "init.inc"
;
-; Tell the user we got this far
-;
- mov si,syslinux_banner
- call writestr_early
-
-...