summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2005-04-28 14:56:08 +0000
committerderaadt <deraadt@openbsd.org>2005-04-28 14:56:08 +0000
commit5c26c390a960039cd86960ffbb189b369c43ab81 (patch)
tree0faf1cc95eaf15d6f024fd31bb565bf9aa676299
parentSupport for "network connected" and "network static" -- announce all (diff)
downloadwireguard-openbsd-5c26c390a960039cd86960ffbb189b369c43ab81.tar.xz
wireguard-openbsd-5c26c390a960039cd86960ffbb189b369c43ab81.zip
shrink volhdr to 128 bytes. would *love* to go to 64 blocks, since that
is 32K, which is the isofs lead-in.... that would let us (for instance) mix sgi boot media with other architectures. that requires shrinking boot, since right now it will not fit in 64 blocks
-rw-r--r--distrib/sgi/cdfs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/sgi/cdfs/Makefile b/distrib/sgi/cdfs/Makefile
index 2090a3426b8..49b1c241f6a 100644
--- a/distrib/sgi/cdfs/Makefile
+++ b/distrib/sgi/cdfs/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 2005/04/27 03:15:54 deraadt Exp $
+# $OpenBSD: Makefile,v 1.2 2005/04/28 14:56:08 deraadt Exp $
TOP= ${.CURDIR}/..
@@ -29,10 +29,10 @@ ${CDROM}:
umount ${.OBJDIR}/cd-dir
@df /dev/svnd0a
vnconfig -u svnd0
-
dd if=/dev/zero of=${.OBJDIR}/${CDROM} bs=1m count=10
vnconfig -v -c svnd0 ${.OBJDIR}/${CDROM}
- /usr/mdec/sgivol -f -i svnd0 | tee ${.OBJDIR}/volhdr
+ # would love to use 64
+ /usr/mdec/sgivol -f -i -h 128 svnd0 | tee ${.OBJDIR}/volhdr
/usr/mdec/sgivol -f -w boot ${DESTDIR}/usr/mdec/boot svnd0
vnconfig -u svnd0
dd if=${.OBJDIR}/${FFS} of=${.OBJDIR}/${CDROM} bs=512 \