diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-02-08 10:14:55 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-02-08 10:14:55 -0800 |
commit | 0498d80af5bae472629762bc953c265d96ebf7c9 (patch) | |
tree | 70ddeba9e6bc8fec620f70e2ef925e45233b6b72 /bootsect.inc | |
parent | 66c93239098f35ec731cbafc9017537d4c5e0c1b (diff) | |
download | syslinux-0498d80af5bae472629762bc953c265d96ebf7c9.tar.gz syslinux-0498d80af5bae472629762bc953c265d96ebf7c9.tar.xz syslinux-0498d80af5bae472629762bc953c265d96ebf7c9.zip |
%ifndef IS_PXELINUX won't do much good... %if IS_PXELINUX == 0 is correctsyslinux-3.36-pre8
Diffstat (limited to 'bootsect.inc')
-rw-r--r-- | bootsect.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootsect.inc b/bootsect.inc index 66e1886a..a2137ecf 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. |