diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2011-07-06 20:02:17 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2011-07-06 20:02:17 +0000 |
commit | 88fa8e979fdda9d0ac55cb2dce68be6a503f8237 (patch) | |
tree | 894ae19d8c55b3ff43c299af9197fa8df67decde /distrib/mvme88k | |
parent | 58e4bb0ca88838f102fd52d15bc154914ad61482 (diff) |
As non-mp install.md's neither set NCPU, nor will have a bsd.mp,
we could as well pull the 'mv bsd.mp bsd' and the associated checks
out of there.
ok deraadt@ "makes sense" todd@
Diffstat (limited to 'distrib/mvme88k')
-rw-r--r-- | distrib/mvme88k/ramdisk/install.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/distrib/mvme88k/ramdisk/install.md b/distrib/mvme88k/ramdisk/install.md index 33b9413d593..efa7ca06170 100644 --- a/distrib/mvme88k/ramdisk/install.md +++ b/distrib/mvme88k/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.39 2011/04/17 20:57:11 krw Exp $ +# $OpenBSD: install.md,v 1.40 2011/07/06 20:02:16 halex Exp $ # Copyright (c) 1996 The NetBSD Foundation, Inc. # All rights reserved. # @@ -37,12 +37,6 @@ NCPU=$(sysctl -n hw.ncpufound) ((NCPU > 1)) && { DEFAULTSETS="bsd bsd.rd bsd.mp" ; SANESETS="bsd bsd.mp" ; } md_installboot() { - if [[ -f /mnt/bsd.mp ]] && ((NCPU > 1)); then - echo "Multiprocessor machine; using bsd.mp instead of bsd." - mv /mnt/bsd /mnt/bsd.sp 2>/dev/null - mv /mnt/bsd.mp /mnt/bsd - fi - cp /mnt/usr/mdec/bootsd /mnt/boot /mnt/usr/mdec/installboot /mnt/boot /mnt/usr/mdec/bootxx /dev/r${1}a } |