diff options
author | 2002-05-19 08:55:12 +0000 | |
---|---|---|
committer | 2002-05-19 08:55:12 +0000 | |
commit | d2957457b90c1793b0fc528081bf73c137feb8a2 (patch) | |
tree | 2ac0250e23fc7119d741e6eb08360a940b12b8c3 | |
parent | better (diff) | |
download | wireguard-openbsd-d2957457b90c1793b0fc528081bf73c137feb8a2.tar.xz wireguard-openbsd-d2957457b90c1793b0fc528081bf73c137feb8a2.zip |
do this by hand
-rw-r--r-- | distrib/i386/common/Makefile.inc | 10 | ||||
-rw-r--r-- | distrib/i386/common/list_floppy | 5 |
2 files changed, 5 insertions, 10 deletions
diff --git a/distrib/i386/common/Makefile.inc b/distrib/i386/common/Makefile.inc index 4ba773dc0aa..456caf0c326 100644 --- a/distrib/i386/common/Makefile.inc +++ b/distrib/i386/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 2002/04/30 03:23:57 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.6 2002/05/19 08:55:12 deraadt Exp $ TOP= ${.CURDIR}/.. @@ -21,7 +21,7 @@ VND_RDEV= /dev/r${VND}a VND_CRDEV= /dev/r${VND}c PID!= echo $$$$ REALIMAGE!= echo /var/tmp/image.${PID} -LISTFLOPPY?= ${.CURDIR}/../common/list_floppy +BOOT= ${DESTDIR}/usr/mdec/boot FLOPPYSIZE?= 144 FLOPPYSECS?= 18 FLOPPYTYPE?= floppy3 @@ -34,9 +34,9 @@ ${FS}: bsd.gz disklabel -w -r ${VND} ${FLOPPYTYPE} newfs -m 0 -o space -i 524288 -c 80 ${VND_RDEV} mount ${VND_DEV} ${MOUNT_POINT} - TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \ - TARGDIR=${MOUNT_POINT} UTILS=${UTILS} \ - sh ${UTILS}/runlist.sh ${LISTFLOPPY} + cp ${BOOT} ${MOUNT_POINT}/ + strip ${MOUNT_POINT}/boot + cp bsd.gz ${MOUNT_POINT}/bsd /usr/mdec/installboot -v -s ${FLOPPYSECS} -h 2 ${MOUNT_POINT}/boot \ ${DESTDIR}/usr/mdec/biosboot ${VND_CRDEV} @echo "" diff --git a/distrib/i386/common/list_floppy b/distrib/i386/common/list_floppy deleted file mode 100644 index b821adbe682..00000000000 --- a/distrib/i386/common/list_floppy +++ /dev/null @@ -1,5 +0,0 @@ -# $OpenBSD: list_floppy,v 1.1 2002/04/22 02:40:02 deraadt Exp $ - -COPY ${DESTDIR}/usr/mdec/boot boot -SPECIAL strip boot -COPY ${OBJDIR}/bsd.gz bsd |