diff options
author | 2019-05-03 23:49:06 +0000 | |
---|---|---|
committer | 2019-05-03 23:49:06 +0000 | |
commit | 5f75b38db31bbce1fe19c4c32c919487493356ff (patch) | |
tree | 3d003710f37c4389d11e163cce1da38457d3a42e | |
parent | Fix order of insertion in load_cfg. (diff) | |
download | wireguard-openbsd-5f75b38db31bbce1fe19c4c32c919487493356ff.tar.xz wireguard-openbsd-5f75b38db31bbce1fe19c4c32c919487493356ff.zip |
cannot give newfs a -c parameter yet, since this Makefile still
thinks in terms of MB and it's not a trivial conversion.
-rw-r--r-- | distrib/sgi/cdfs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/sgi/cdfs/Makefile b/distrib/sgi/cdfs/Makefile index 897f55c0583..8cac7c22182 100644 --- a/distrib/sgi/cdfs/Makefile +++ b/distrib/sgi/cdfs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.26 2019/05/03 20:03:59 deraadt Exp $ +# $OpenBSD: Makefile,v 1.27 2019/05/03 23:49:06 deraadt Exp $ FS= miniroot${OSrev}.fs CDROM= cd${OSrev}.iso @@ -21,7 +21,7 @@ ${CDROM}: dd if=/dev/zero of=${FS} bs=1m count=${CDFSMB} vnconfig -v ${FS} > vnd disklabel -w `cat vnd` minicdroot "OpenBSD/sgi " - newfs -m 0 -o space -i 524288 -c ${FSSIZE} /dev/r`cat vnd`a + newfs -m 0 -o space -i 524288 /dev/r`cat vnd`a mount /dev/`cat vnd`a ${.OBJDIR}/cd-dir mkdir -p ${.OBJDIR}/cd-dir/${OSrev}/sgi .for IP in ${ALLIP} |