diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-13 17:34:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-13 17:34:41 +0000 |
commit | aaadc3febf45ff292d15ca0da9ace923293833ed (patch) | |
tree | d07b1482b76432aca003468d90e61f594484fdd7 /distrib/mac68k | |
parent | d49a4ab20340009afee5741854fcc2ef8a167471 (diff) |
Update install media generation to the new semantics of the -c flag.
Also replace "newfs -O" with "newfs -O 0" now that -O takes an option.
Diffstat (limited to 'distrib/mac68k')
-rw-r--r-- | distrib/mac68k/ramdisk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/mac68k/ramdisk/Makefile b/distrib/mac68k/ramdisk/Makefile index c5a7a24dc6f..a5acea51c8e 100644 --- a/distrib/mac68k/ramdisk/Makefile +++ b/distrib/mac68k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2006/02/28 19:24:43 miod Exp $ +# $OpenBSD: Makefile,v 1.9 2007/04/13 17:34:40 millert Exp $ TOP= ${.CURDIR}/.. @@ -21,7 +21,7 @@ PID!= echo $$$$ DISKTYPE= rdroot NBLKS= 2880 -NEWFSARGS= -t ffs -m 0 -o space -u 32 -c 16 -b 4096 +NEWFSARGS= -t ffs -m 0 -o space -b 4096 all: ${BSD_RD} |