diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-09 20:04:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-09 20:04:10 +0000 |
commit | 169e4ff046c12a691d3d7185d5a5e91ba3e404d2 (patch) | |
tree | 281a1c71a0c525f22dfd2700d025986a9092f0f5 /distrib/alpha | |
parent | ee9fc2dcb402c3dfbaad3988c00852037584ef6c (diff) |
miniroots may have suprising rootdevs. Cope.
Diffstat (limited to 'distrib/alpha')
-rw-r--r-- | distrib/alpha/common/dot.profile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/distrib/alpha/common/dot.profile b/distrib/alpha/common/dot.profile index dbe554a2b88..6d314e99af1 100644 --- a/distrib/alpha/common/dot.profile +++ b/distrib/alpha/common/dot.profile @@ -1,5 +1,5 @@ # -# $OpenBSD: dot.profile,v 1.5 2002/04/01 01:31:39 deraadt Exp $ +# $OpenBSD: dot.profile,v 1.6 2002/04/09 20:04:09 deraadt Exp $ # # Copyright (c) 1994 Christopher G. Demetriou # All rights reserved. @@ -40,11 +40,12 @@ TERMS=`grep '^[A-z]' /usr/share/misc/termcap | sed -e 's/|[^|]*$//' -e 's/|/ /g' TERM=vt220 PAGER=more +rootdisk=`dmesg|grep "^root on"|{ o=;while read x y z t;do o=/dev/$z;done;echo $o;}` + if [ "X${DONEPROFILE}" = "X" ]; then DONEPROFILE=YES - # need a writable root - mount -u /dev/rd0a / + mount -u ${rootdisk:-/dev/rd0a} / isin() { local _a |