summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlemens Nanni <kn@cvs.openbsd.org>2023-03-27 19:43:37 +0000
committerKlemens Nanni <kn@cvs.openbsd.org>2023-03-27 19:43:37 +0000
commit9d56153f8e1271f0d9b9c858028f2e22b6a86838 (patch)
tree82d11406d8035608f27158a9c5be540db1fdb6d6
parent81e1880d57e75d2d4d803dda990dd9e084e65300 (diff)
Silence informational messages from dd(1) when zeroing a disk's first 1MB
-rw-r--r--distrib/macppc/ramdisk/install.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/macppc/ramdisk/install.md b/distrib/macppc/ramdisk/install.md
index b20f3240a0f..56247b095c6 100644
--- a/distrib/macppc/ramdisk/install.md
+++ b/distrib/macppc/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.76 2022/09/11 04:38:28 gkoehler Exp $
+# $OpenBSD: install.md,v 1.77 2023/03/27 19:43:36 kn Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -74,7 +74,7 @@ __EOT
case $resp in
[wW]*)
echo -n "Creating a 1MB DOS partition and an OpenBSD partition for rest of $_disk..."
- dd if=/dev/zero of=/dev/r${_disk}c bs=1m count=1
+ dd if=/dev/zero of=/dev/r${_disk}c bs=1m count=1 status=none
fdisk -iy -b "2048@1:06" $_disk >/dev/null
echo "done."
break ;;