diff options
author | brian <brian@FreeBSD.org> | 1999-05-25 09:32:00 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1999-05-25 09:32:00 +0000 |
commit | 65da05fe975ca9abc920a5b16173659dfcd88411 (patch) | |
tree | 8603f66ad37729836bed243771fd59c554842e0d /sys/i386 | |
parent | 1eb58535d9022be832f39ec8990b8832d7369f8c (diff) | |
download | FreeBSD-src-65da05fe975ca9abc920a5b16173659dfcd88411.zip FreeBSD-src-65da05fe975ca9abc920a5b16173659dfcd88411.tar.gz |
Allow booting from "ad"
Reviewed by: Søren
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/boot/biosboot/table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/boot/biosboot/table.c b/sys/i386/boot/biosboot/table.c index ad81d79..54f12ef 100644 --- a/sys/i386/boot/biosboot/table.c +++ b/sys/i386/boot/biosboot/table.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:36:43 rpd - * $Id: table.c,v 1.16 1998/09/15 09:59:58 gibbs Exp $ + * $Id: table.c,v 1.17 1998/10/10 14:30:05 bde Exp $ */ /* @@ -136,5 +136,5 @@ struct pseudo_desc Idtr_real = { 0x400 - 1, 0x0, 0x0 }; * All initialized data is defined in one file to reduce space wastage from * fragmentation. */ -char *devs[] = { "wd", "dk", "fd", "wt", "da", 0 }; +char *devs[] = { "wd", "ad", "dk", "fd", "wt", "da", 0 }; unsigned tw_chars = 0x5C2D2F7C; /* "\-/|" */ |