From 0498d80af5bae472629762bc953c265d96ebf7c9 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 8 Feb 2007 10:14:55 -0800 Subject: [PATCH] %ifndef IS_PXELINUX won't do much good... %if IS_PXELINUX == 0 is correct --- bootsect.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootsect.inc b/bootsect.inc index 66e1886..a2137ec 100644 --- a/bootsect.inc +++ b/bootsect.inc @@ -136,7 +136,7 @@ replace_bootstrap: mov [es:di+12],esi ; New ESI mov [es:di+6],bx ; New DS -%ifndef IS_PXELINUX +%if IS_PXELINUX == 0 ; DON'T DO THIS FOR PXELINUX... ; For PXE, ES:BX -> PXENV+, and this would corrupt ; that use. -- 2.7.4