summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2001-02-08 14:07:02 +0000
committerart <art@openbsd.org>2001-02-08 14:07:02 +0000
commit39c7a53e331f79a485d63dc1e89c0c54d9f2d978 (patch)
treef6c4d47b71c203a483277bcea97e6dcf2902944d
parentActually give esym some storage. As it was, esym pointed (diff)
downloadwireguard-openbsd-39c7a53e331f79a485d63dc1e89c0c54d9f2d978.tar.xz
wireguard-openbsd-39c7a53e331f79a485d63dc1e89c0c54d9f2d978.zip
Squeeze a bit more to make it fit.
o Reduce the number of inodes on the ramdisk image. o Use dd instead of cp ro copy the kernel onto the floppy.
-rw-r--r--distrib/alpha/common/Makefile.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/alpha/common/Makefile.inc b/distrib/alpha/common/Makefile.inc
index 3d04fcd09a8..b08d6076742 100644
--- a/distrib/alpha/common/Makefile.inc
+++ b/distrib/alpha/common/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.2 2001/02/04 21:06:14 deraadt Exp $
+# $OpenBSD: Makefile.inc,v 1.3 2001/02/08 14:07:02 art Exp $
TOP= ${.CURDIR}/..
@@ -39,7 +39,7 @@ NBLKS= 5744
# old format, minfree, opt, b/i trks, sects, cpg
NEWFSARGS= -t ffs -m 0 -o space
-NEWFSARGS_RD= -i 8192 -c 80
+NEWFSARGS_RD= -i 16384 -c 80
NEWFSARGS_FD= -i 524288 -c 80
${FLOPPY}: bsd.gz
@@ -49,7 +49,7 @@ ${FLOPPY}: bsd.gz
newfs ${NEWFSARGS} ${NEWFSARGS_FD} -s ${FLOPPYBLKS} ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
cp ${BOOT} ${MOUNT_POINT}
- cp bsd.gz ${MOUNT_POINT}/bsd
+ dd if=bsd.gz of=${MOUNT_POINT}/bsd bs=512
${INSTALLBOOT} ${MOUNT_POINT}/boot ${BOOTXX} ${VND_CRDEV}
@echo ""
@df -i ${MOUNT_POINT}