diff options
author | 2005-03-25 22:03:10 +0000 | |
---|---|---|
committer | 2005-03-25 22:03:10 +0000 | |
commit | 166ae3f35cb67a115a79b674745a56b10415e114 (patch) | |
tree | 050026e32184b0e0a7bea46c1a3d1b38f002b4db | |
parent | Fix APIWARNs. (diff) | |
download | wireguard-openbsd-166ae3f35cb67a115a79b674745a56b10415e114.tar.xz wireguard-openbsd-166ae3f35cb67a115a79b674745a56b10415e114.zip |
a quick fix -- pad image w/ extra 64k until boot can cope w/ short reads
-rw-r--r-- | distrib/hppa/ramdisk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/hppa/ramdisk/Makefile b/distrib/hppa/ramdisk/Makefile index 3eb8b16fc16..e000b977037 100644 --- a/distrib/hppa/ramdisk/Makefile +++ b/distrib/hppa/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2005/03/11 15:40:58 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 2005/03/25 22:03:10 mickey Exp $ CBIN= instbin ARCHDIR= ${.CURDIR}/.. @@ -60,6 +60,7 @@ ${CDROM}: bsd ${CDBOOT} vnconfig -v -c ${VND} ${.OBJDIR}/${CDROM} disklabel -w ${VND} fakecdrom "OpenBSD/hppa " vnconfig -u ${VND} + dd if=/dev/zero bs=64k count=1 >> ${.OBJDIR}/${CDROM} obsd: cd ${SRCDIR}/sys/arch/${MACHINE}/conf && config ${KERNEL} |