Displaying 1 result from an estimated 1 matches for "s_yslinux".
2009 Jun 30
2
syslinux 3.11 patch for handling both KVM and serial console input
...t
label -3
  kernel vmlinuz
  append rescue initrd=initrd.img console=ttyS0,38400n8 text
----isolinux.cfg menu ends----
David Parsons, who is no longer with ADP, did most of the
modifications which made this work.
--Seth Alford
ADP Dealer Services
seth_alford at adp.com
----patch follows----
--- s_yslinux-3.11.orig/conio.inc	2005-08-18 13:53:39.000000000 -0700
+++ s_yslinux-3.11.new/conio.inc	2009-03-19 17:29:55.000000000 -0700
@@ -356,8 +356,10 @@
 .serial:	xor ah,ah		; Avoid confusion
 		xchg dx,bx		; Data port
 		in al,dx
+		mov byte [FromFlag],45  ; '-' flags input from serial
 		ret
-.k...