diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-11-14 23:21:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-11-14 23:21:28 +0000 |
commit | 231448b73ea84fb6b44a1e2fad2383a7ae09872d (patch) | |
tree | 92dc9f89057d4e9ed31d0550f479b236c0aac13d | |
parent | 2359073b1d0ee8f09a54871022104b97aab2f237 (diff) |
Don't do non-512 writes to vnd. ok matthew
-rw-r--r-- | distrib/socppc/miniroot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distrib/socppc/miniroot/Makefile b/distrib/socppc/miniroot/Makefile index 8ccef938e3d..2d4ce5da8f1 100644 --- a/distrib/socppc/miniroot/Makefile +++ b/distrib/socppc/miniroot/Makefile @@ -33,7 +33,7 @@ ${IMAGE}: rd_setup do_files rd_teardown .endif do_files: - dd if=${DESTDIR}/usr/mdec/boot.elf of=${VND_IRDEV} + dd if=${DESTDIR}/usr/mdec/boot.elf of=${VND_IRDEV} conv=osync gzip -c < ${.OBJDIR}/../ramdisk/bsd.rd > ${MOUNT_POINT}/bsd.rd ln ${MOUNT_POINT}/bsd.rd ${MOUNT_POINT}/bsd |