summaryrefslogtreecommitdiff
path: root/distrib/alpha/common
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-05-31 17:49:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-05-31 17:49:54 +0000
commit24d1999db7820d4598c10146ecc9676c73825ad3 (patch)
tree7bb45285702730bbb5a6089ed1898c88504367a8 /distrib/alpha/common
parente378318a967ade3cf3dc2b972b471f69b27ca9b6 (diff)
Make bootblock installation as silent as possible by default. While
there, remove a lot of cruft from the various md_installboot functions ok halex
Diffstat (limited to 'distrib/alpha/common')
-rw-r--r--distrib/alpha/common/install.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/distrib/alpha/common/install.md b/distrib/alpha/common/install.md
index f18b2c6180a..316e7598e29 100644
--- a/distrib/alpha/common/install.md
+++ b/distrib/alpha/common/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.28 2009/05/11 17:13:07 deraadt Exp $
+# $OpenBSD: install.md,v 1.29 2009/05/31 17:49:53 deraadt Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -40,12 +40,10 @@ md_installboot() {
# use extracted mdec if it exists (may be newer)
if [ -d /mnt/usr/mdec ]; then
cp /mnt/usr/mdec/boot /mnt/boot
- /mnt/usr/mdec/installboot -v /mnt/boot /mnt/usr/mdec/bootxx $_rawdev
+ /mnt/usr/mdec/installboot /mnt/boot /mnt/usr/mdec/bootxx $_rawdev
elif [ -d /usr/mdec ]; then
cp /usr/mdec/boot /mnt/boot
- /usr/mdec/installboot -v /mnt/boot /usr/mdec/bootxx $_rawdev
- else
- echo No boot block prototypes found, you must run installboot manually.
+ /usr/mdec/installboot /mnt/boot /usr/mdec/bootxx $_rawdev
fi
}