diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-05-07 04:46:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-05-07 04:46:53 +0000 |
commit | 62a22c2462300a4acf2ab18a9876b12b6744176d (patch) | |
tree | 35c995b17ea70a7b9e4c889583b2fc713d54f95a /distrib/i386/floppies | |
parent | 1dfae2acf56a2640c248a4de70b99767d2f6fdbb (diff) |
strip kernel, fewer inodes on floppy
Diffstat (limited to 'distrib/i386/floppies')
-rw-r--r-- | distrib/i386/floppies/ramdisk/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/distrib/i386/floppies/ramdisk/Makefile b/distrib/i386/floppies/ramdisk/Makefile index 92b05cbb19e..039d4df69aa 100644 --- a/distrib/i386/floppies/ramdisk/Makefile +++ b/distrib/i386/floppies/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 1997/05/04 20:52:48 tholo Exp $ +# $OpenBSD: Makefile,v 1.13 1997/05/07 04:46:52 deraadt Exp $ # Revision is 2.1 REV= 21 @@ -35,7 +35,7 @@ ${FS}: bsd.gz dd if=/dev/zero of=${REALIMAGE} bs=10k count=144 vnconfig -v -c ${VND} ${REALIMAGE} disklabel -w -r ${VND} floppy3 - newfs -m 0 -o space -i 6500 -c 80 ${VND_RDEV} floppy3 + newfs -m 0 -o space -i 32768 -c 80 ${VND_RDEV} floppy3 .endif mount ${VND_DEV} ${MOUNT_POINT} TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \ @@ -61,7 +61,9 @@ NBLKS= 4046 NEWFSARGS= -m 0 -o space -c 16 -i 4096 bsd.gz: bsd.rd - gzip -c9 bsd.rd > bsd.gz + cp bsd.rd bsd.strip + strip bsd.strip + gzip -c9 bsd.strip > bsd.gz bsd.rd: ${IMAGE} bsd rdsetroot cp bsd bsd.rd |