summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-01-30 17:59:14 -0800
committerH. Peter Anvin <hpa@zytor.com>2007-01-30 17:59:14 -0800
commitac7d5bd715bb28f4e2cfef3c1cb158d2eace0e4a (patch)
tree9f5f27756b18f0c28e402af8311cd4f7b0cd7b52
parent56d06ed1af5b29f6fc6130b02730f762f5ab384e (diff)
downloadsyslinux-ac7d5bd715bb28f4e2cfef3c1cb158d2eace0e4a.tar.gz
MEMDISK: add alias "cbios" == "noebios" == "noedd"
-rw-r--r--memdisk/setup.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/memdisk/setup.c b/memdisk/setup.c
index 96e87b08..d1eabc58 100644
--- a/memdisk/setup.c
+++ b/memdisk/setup.c
@@ -586,7 +586,8 @@ void setup(syscall_t cs_syscall, void *cs_bounce)
getcmditem("ebios") != CMD_NOTFOUND)
do_edd = 1;
else if (getcmditem("noedd") != CMD_NOTFOUND ||
- getcmditem("noebios") != CMD_NOTFOUND)
+ getcmditem("noebios") != CMD_NOTFOUND ||
+ getcmditem("cbios") != CMD_NOTFOUND)
do_edd = 0;
else
do_edd = (geometry->driveno & 0x80) ? 1 : 0;