diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2009-03-08 22:54:05 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2009-03-08 22:54:05 -0700 |
| commit | 168174176a3daed67ffabdb8e7ef56b81ca2e63b (patch) | |
| tree | f484721e8ae7bffc52ec57972b299f03fdbf1fb4 /memdisk | |
| parent | 1e5b612846943b32152cd4b639cef894b6f81e22 (diff) | |
| download | syslinux-168174176a3daed67ffabdb8e7ef56b81ca2e63b.tar.gz | |
MEMDISK: get rid of the WITH_EDD variable
With the creation of wrapper assembly scripts, there is no reason for
the indirection of WITH_EDD -> EDD; we can just set the EDD variable
directly.
Diffstat (limited to 'memdisk')
| -rw-r--r-- | memdisk/memdisk.inc | 8 | ||||
| -rw-r--r-- | memdisk/memdisk_chs.asm | 1 | ||||
| -rw-r--r-- | memdisk/memdisk_edd.asm | 2 |
3 files changed, 3 insertions, 8 deletions
diff --git a/memdisk/memdisk.inc b/memdisk/memdisk.inc index 2b5b4e06..8fa7dc02 100644 --- a/memdisk/memdisk.inc +++ b/memdisk/memdisk.inc @@ -6,7 +6,7 @@ ; A program to emulate an INT 13h disk BIOS from a "disk" in extended ; memory. ; -; Copyright 2001-2008 H. Peter Anvin - All Rights Reserved +; Copyright 2001-2009 H. Peter Anvin - All Rights Reserved ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by @@ -22,12 +22,6 @@ ; %define DEBUG_TRACERS ; Uncomment to get debugging tracers -%ifdef WITH_EDD -%define EDD 1 -%else -%define EDD 0 -%endif - %ifdef DEBUG_TRACERS %macro TRACER 1 diff --git a/memdisk/memdisk_chs.asm b/memdisk/memdisk_chs.asm index daa5c0a8..4b06a856 100644 --- a/memdisk/memdisk_chs.asm +++ b/memdisk/memdisk_chs.asm @@ -1 +1,2 @@ +%define EDD 0 %include "memdisk.inc" diff --git a/memdisk/memdisk_edd.asm b/memdisk/memdisk_edd.asm index 97d3fe9a..d2e7b1cf 100644 --- a/memdisk/memdisk_edd.asm +++ b/memdisk/memdisk_edd.asm @@ -1,2 +1,2 @@ -%define WITH_EDD +%define EDD 1 %include "memdisk.inc" |
