diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 02:10:01 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 02:10:01 +0000 |
commit | 23dfbfbc0a69d8e64d7f226fedb5ff98ae3d15f0 (patch) | |
tree | c3924d18e953fc107bbad6da04e5632f609afdbd /distrib/alpha/ramdisk/Makefile | |
parent | f65d46ce3ea0a929f4176f0c555af1a4f3ae756f (diff) |
Fix some newfs usage.
Diffstat (limited to 'distrib/alpha/ramdisk/Makefile')
-rw-r--r-- | distrib/alpha/ramdisk/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/distrib/alpha/ramdisk/Makefile b/distrib/alpha/ramdisk/Makefile index 630a9088dc7..f2ad4eb82ec 100644 --- a/distrib/alpha/ramdisk/Makefile +++ b/distrib/alpha/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 1997/09/05 21:16:42 deraadt Exp $ +# $OpenBSD: Makefile,v 1.13 1997/09/26 02:09:53 millert Exp $ TOP= ${.CURDIR}/.. @@ -44,8 +44,7 @@ ${FLOPPY}: bsd.gz dd if=/dev/zero of=${REALIMAGE} count=${FLOPPYBLKS} vnconfig -v -c ${VND} ${REALIMAGE} disklabel -w -r ${VND} ${FLOPPYTYPE} - newfs ${NEWFSARGS} ${NEWFSARGS_FD} -s ${FLOPPYBLKS} ${VND_RDEV} \ - ${FLOPPYTYPE} + newfs ${NEWFSARGS} ${NEWFSARGS_FD} -s ${FLOPPYBLKS} ${VND_RDEV} mount ${VND_DEV} ${MOUNT_POINT} cp ${BOOT} ${MOUNT_POINT} cp bsd.gz ${MOUNT_POINT}/bsd @@ -91,7 +90,7 @@ do_prep: disklabel -w -r ${VND} ${DISKTYPE} do_mount: - newfs ${NEWFSARGS} ${NEWFSARGS_RD} -s ${NBLKS} ${VND_RDEV} ${DISKTYPE} + newfs ${NEWFSARGS} ${NEWFSARGS_RD} -s ${NBLKS} ${VND_RDEV} mount ${VND_DEV} ${MOUNT_POINT} do_umount: |