diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-23 19:45:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-23 19:45:04 +0000 |
commit | d83f5786ed940c67fb7d66cc4945a1b84f6279af (patch) | |
tree | 7eb4382f0b4f8a5b9b50615f865e3fffb407de80 /distrib/miniroot/upgrade.sh | |
parent | 12ce374fe89e95dea19bb150c4921a44f38e2b67 (diff) |
argh. stop using kernfs, using dmesg using sysctl. encode ARCH into
install.md at build time. remove some crud. and the icing on the cake:
skip testing all this until next week
Diffstat (limited to 'distrib/miniroot/upgrade.sh')
-rw-r--r-- | distrib/miniroot/upgrade.sh | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/distrib/miniroot/upgrade.sh b/distrib/miniroot/upgrade.sh index 044921f5252..618e2854be7 100644 --- a/distrib/miniroot/upgrade.sh +++ b/distrib/miniroot/upgrade.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: upgrade.sh,v 1.16 2001/04/20 01:55:51 krw Exp $ +# $OpenBSD: upgrade.sh,v 1.17 2001/06/23 19:44:46 deraadt Exp $ # $NetBSD: upgrade.sh,v 1.2.4.5 1996/08/27 18:15:08 gwr Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -57,7 +57,6 @@ MODE="upgrade" # md_welcome_banner() - display friendly message # md_not_going_to_install() - display friendly message # md_congrats() - display friendly message -# md_machine_arch() - get machine architecture # include machine dependent subroutines . install.md @@ -88,14 +87,6 @@ md_set_term # XXX Work around vnode aliasing bug (thanks for the tip, Chris...) ls -l /dev > /dev/null 2>&1 -# Make sure we can write files (at least in /tmp) -# This might make an MFS mount on /tmp, or it may -# just re-mount the root with read-write enabled. -md_makerootwritable - -# Get the machine architecture (must be done after md_makerootwritable) -ARCH=`md_machine_arch` - while [ "X${ROOTDISK}" = "X" ]; do getrootdisk done |