summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2011-07-24 02:08:11 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2011-07-24 02:08:11 +0000
commite24140430dfd46423b9bc028c90ae6e163c5f02d (patch)
tree3be18c82659d2afd1558ac9fd20bc9bd9141ccd6
parentd8569d0387d36bd60ed1efeab81caa8b1fbb7a37 (diff)
back out conv=sync change; the disk subsystem changes which "required"
this are gone, and halex points out that one of the dd's in use has no conv= support.
-rw-r--r--distrib/socppc/miniroot/Makefile2
-rw-r--r--distrib/socppc/ramdisk/install.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/distrib/socppc/miniroot/Makefile b/distrib/socppc/miniroot/Makefile
index 253f9f8aa3f..8ccef938e3d 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} conv=sync
+ dd if=${DESTDIR}/usr/mdec/boot.elf of=${VND_IRDEV}
gzip -c < ${.OBJDIR}/../ramdisk/bsd.rd > ${MOUNT_POINT}/bsd.rd
ln ${MOUNT_POINT}/bsd.rd ${MOUNT_POINT}/bsd
diff --git a/distrib/socppc/ramdisk/install.md b/distrib/socppc/ramdisk/install.md
index 659315a94a1..184d8e63c18 100644
--- a/distrib/socppc/ramdisk/install.md
+++ b/distrib/socppc/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.14 2011/07/15 16:29:57 deraadt Exp $
+# $OpenBSD: install.md,v 1.15 2011/07/24 02:08:10 deraadt Exp $
#
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
md_installboot() {
local _disk=$1
- if dd if=/usr/mdec/boot.elf of=/dev/${_disk}i conv=sync; then
+ if dd if=/usr/mdec/boot.elf of=/dev/${_disk}i; then
return
fi