diff options
author | kris <kris@FreeBSD.org> | 2000-05-07 09:23:36 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-05-07 09:23:36 +0000 |
commit | 390c965a23ca202dea796e03d92cb9d8a09a13d0 (patch) | |
tree | 532629c2e5fc1dcf84b78ac5e2d499199f1dcea8 /usr.bin/doscmd | |
parent | 317ebb57aa2d2c6b4a937eb50867fc515e18b46d (diff) | |
download | FreeBSD-src-390c965a23ca202dea796e03d92cb9d8a09a13d0.zip FreeBSD-src-390c965a23ca202dea796e03d92cb9d8a09a13d0.tar.gz |
Update device references.
Diffstat (limited to 'usr.bin/doscmd')
-rw-r--r-- | usr.bin/doscmd/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/doscmd/README.booting_dos | 7 | ||||
-rw-r--r-- | usr.bin/doscmd/doscmd.1 | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/usr.bin/doscmd/Makefile b/usr.bin/doscmd/Makefile index 8ecdcec..83ebca2 100644 --- a/usr.bin/doscmd/Makefile +++ b/usr.bin/doscmd/Makefile @@ -26,8 +26,8 @@ EXEGRP= bin #BINMODE= 2555 EXEMODE= 444 -.if !defined(NO_X) && !defined(DESTDIR) && exists(${X11BASE}/include/X11/X.h) \ - && exists(${XLIBDIR}/libX11.a) +.if !defined(NO_X11SUPPORT) && !defined(DESTDIR) \ + && exists(${X11BASE}/include/X11/X.h) && exists(${XLIBDIR}/libX11.a) CFLAGS+= -I${X11BASE}/include LDADD+= -L${XLIBDIR} -lX11 DPADD+= ${XLIBDIR}/libX11.a diff --git a/usr.bin/doscmd/README.booting_dos b/usr.bin/doscmd/README.booting_dos index e33924f..926c3ac 100644 --- a/usr.bin/doscmd/README.booting_dos +++ b/usr.bin/doscmd/README.booting_dos @@ -1,19 +1,18 @@ /* BSDI README.booting_dos,v 2.2 1996/04/08 19:32:18 bostic Exp*/ +/* $FreeBSD$ */ To install DOS on a pseudo hard disk under doscmd: 1) Create a .doscmdrc with at least the following: - assign A: /dev/rfd0_1440_3.5 1440 - assign A: /dev/rfd0_720_3.5 720 + assign A: /dev/fd0.1440 1440 + assign A: /dev/fd0.720 720 assign hard boot_drive 80 2 2 You may need to adjust the raw files for the A: drive to match your system. This example will cause the HD drive to be tried first and the DD drive second. - [ For FreeBSD the A: drive devices are /dev/rfd0.1440 and /dev/rfd0.720 ] - Note that you should only use raw devices or files at this point, do not use a cooked device! (Well, it would probably be okay for a hard disk, but certainly not the floppy) diff --git a/usr.bin/doscmd/doscmd.1 b/usr.bin/doscmd/doscmd.1 index ac9e1f2..1aab48d 100644 --- a/usr.bin/doscmd/doscmd.1 +++ b/usr.bin/doscmd/doscmd.1 @@ -612,8 +612,8 @@ Create a .Pa .doscmdrc with at least the following: .Bd -literal -offset indent -assign A: /dev/rfd0.1440 1440 -assign A: /dev/rfd0.720 720 +assign A: /dev/fd0.1440 1440 +assign A: /dev/fd0.720 720 assign hard boot_drive 80 2 2 .Ed .Pp |