diff options
author | H. Peter Anvin <hpa@zytor.com> | 2006-10-20 09:51:19 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2006-10-20 09:51:19 -0700 |
commit | 5b118ef282d2067b98335d084f4050e47707df83 (patch) | |
tree | 498fee361dbe03ddb5561e275fa9a2e611fc83c4 | |
parent | f44248bc9677a6e82c700f91a72d1a798aaa097a (diff) | |
download | syslinux.git-5b118ef282d2067b98335d084f4050e47707df83.tar.gz syslinux.git-5b118ef282d2067b98335d084f4050e47707df83.tar.xz syslinux.git-5b118ef282d2067b98335d084f4050e47707df83.zip |
[memdisk] Enable EDD support by default.syslinux-3.32-pre3
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | memdisk/Makefile | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -5,6 +5,7 @@ them. Changes in 3.32: * MEMDISK: New "safeint" mode. * MEMDISK: Be more compliant with the PnP BIOS spec. + * MEMDISK: Turn on EDD support by default. Changes in 3.31: * The simple menu system (menu.c32 and vesamenu.c32) now diff --git a/memdisk/Makefile b/memdisk/Makefile index f4d0739d..f628ff24 100644 --- a/memdisk/Makefile +++ b/memdisk/Makefile @@ -26,8 +26,8 @@ CFLAGS = -g -W -Wall -Wno-sign-compare \ LDFLAGS = -g INCLUDE = -I../com32/include LD = ld -m elf_i386 -NASM = nasm -O99 # -dWITH_EDD -NFLAGS = -dVERSION='"$(VERSION)"' -dDATE='"$(DATE)"' +NASM = nasm -O99 +NFLAGS = -dVERSION='"$(VERSION)"' -dDATE='"$(DATE)"' -dWITH_EDD NINCLUDE = OBJCOPY = objcopy PERL = perl |