diff options
author | jkh <jkh@FreeBSD.org> | 1996-12-13 07:55:14 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-12-13 07:55:14 +0000 |
commit | 0e16e2c15f911900b1a5cae39f824a28ea411d43 (patch) | |
tree | ace002c6ad7b48125631f2f32c226c07895e7daa /lib/libdisk/disk.c | |
parent | e0f6f49854be479536476c61607a4fcfdbe22718 (diff) | |
download | FreeBSD-src-0e16e2c15f911900b1a5cae39f824a28ea411d43.zip FreeBSD-src-0e16e2c15f911900b1a5cae39f824a28ea411d43.tar.gz |
Close PR#2198:
I've added an installation from optical disk drive facility.
This enables FreeBSD to be installed from an optical disk, which
may be formatted in "super floppy" style or sliced into MSDOS-FS
and UFS partitions.
Note: ncr.c should be reviewed by Stefan Esser <se@freebsd.org>
and cd.c by Joerg Wunsch <joerg@freebsd.org> before bringing this
into 2.2.
Submitted-By: Shunsuke Akiyama <akiyama@kme.mei.co.jp>
Diffstat (limited to 'lib/libdisk/disk.c')
-rw-r--r-- | lib/libdisk/disk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c index 0565d2c..990fca5 100644 --- a/lib/libdisk/disk.c +++ b/lib/libdisk/disk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: disk.c,v 1.22 1996/04/29 05:03:02 jkh Exp $ + * $Id: disk.c,v 1.23 1996/11/27 22:44:33 phk Exp $ * */ @@ -285,7 +285,7 @@ Collapse_Disk(struct disk *d) } #endif -static char * device_list[] = {"wd","sd",0}; +static char * device_list[] = {"wd","sd","od",0}; char ** Disk_Names() |