diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2019-07-31 11:19:40 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2019-07-31 11:19:40 +0000 |
commit | 752b2f9fb4f61ff37493cfc60cdf69879ce3bc33 (patch) | |
tree | 9be66dd84d3cababdb74c248f783a6b73bfa7ade /distrib/luna88k/ramdisk | |
parent | c50c3cc5974cf82dc1effff40d35226257e1127e (diff) |
Fix errors while building bsd.rd & minirootXX.fs on luna88k that is
caused by recent Makefile changes.
Confirmed by me, "sure" deraadt@
Diffstat (limited to 'distrib/luna88k/ramdisk')
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/luna88k/ramdisk/Makefile b/distrib/luna88k/ramdisk/Makefile index cee8a490c43..37ce8e695b0 100644 --- a/distrib/luna88k/ramdisk/Makefile +++ b/distrib/luna88k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.27 2019/05/03 20:03:58 deraadt Exp $ +# $OpenBSD: Makefile,v 1.28 2019/07/31 11:19:39 aoyama Exp $ FS= miniroot${OSrev}.fs FSSIZE= 8192 @@ -17,7 +17,7 @@ LDSTATIC=-static all: ${FS} -${FS}: vn_up install_files showit vn_down +${FS}: bsd.rd dd if=/dev/zero of=${FS} bs=512 count=${FSSIZE} vnconfig -v ${FS} > vnd disklabel -w `cat vnd` ${FSDISKTYPE} @@ -52,7 +52,7 @@ mr.fs: instbin makefs ${MRMAKEFSARGS} $@ $@.d instbin.mk instbin.cache instbin.c: instbin.conf - crunchgen -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib \ + crunchgen -E -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib \ -c instbin.c -e instbin -m instbin.mk instbin.conf instbin: instbin.mk instbin.cache instbin.c |