diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-28 14:56:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-28 14:56:09 +0000 |
commit | f33c22612a0243428cec228ac00bd3b2fd2cdc2f (patch) | |
tree | c2c127c349bdd62524f14d57528553d116651544 /distrib | |
parent | 934b54fb57ccdabbc5621556f361d6f264d7781c (diff) |
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
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/sgi/cdfs/Makefile | 6 |
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 \ |