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/ramdisk | |
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/ramdisk')
-rw-r--r-- | distrib/ramdisk/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/ramdisk/Makefile b/distrib/ramdisk/Makefile index 1fca97a8271..6a631093ccf 100644 --- a/distrib/ramdisk/Makefile +++ b/distrib/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.28 2007/02/16 16:56:22 tsi Exp $ +# $OpenBSD: Makefile,v 1.29 2007/04/13 17:34:40 millert Exp $ REV= ${OSrev} @@ -46,9 +46,9 @@ RAWLABEL?= -r # old format, minfree, opt, b/i trks, sects, cpg NEWFSOPTS= -t ffs -m 0 -o space -f 1024 -b 8192 -NEWFSOPTS_RD?= ${NEWFSOPTS} -i 16384 -c 64 -s ${IMAGESIZE} -#NEWFSOPTS_FD= ${NEWFSOPTS} -i 524288 -c 80 -s ${FLOPPYSIZE} -NEWFSOPTS_FD= ${NEWFSOPTS} -i 1048575 -c 256 -s ${FLOPPYSIZE} +NEWFSOPTS_RD?= ${NEWFSOPTS} -i 16384 -s ${IMAGESIZE} +#NEWFSOPTS_FD= ${NEWFSOPTS} -i 524288 -c ${FLOPPYSIZE} -s ${FLOPPYSIZE} +NEWFSOPTS_FD= ${NEWFSOPTS} -i 1048575 -c ${FLOPPYSIZE} -s ${FLOPPYSIZE} .ifndef DESTDIR all: |