diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-04-01 21:24:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-04-01 21:24:23 +0000 |
commit | 093eb5e808640dabf254710b13bc003cd60f7370 (patch) | |
tree | a46be33ed8f820e0df66cbe4b38446a2802a9475 /distrib/miniroot | |
parent | 877d5dfb62570f5865b95fe5c19182cfb2e2afa2 (diff) |
remove twiddle; tmp/fstab.*
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/install.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index d59d56bb7ef..3f23e31af8b 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.45 1999/04/01 04:14:08 millert Exp $ +# $OpenBSD: install.sh,v 1.46 1999/04/01 21:24:22 deraadt Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997,1998 Todd Miller, Theo de Raadt @@ -207,7 +207,7 @@ __get_filesystems_1 _psizes[${_npartitions}]=${_ps} # If the user assigned a mount point, use it. if [ -f /tmp/fstab.${DISK} ]; then - _mount_points[${_npartitions}]=`sed -n "s:^/dev/$DISK$_pp[ ]*\([^ ]*\).*:\1:p" < /etc/fstab.${DISK}` + _mount_points[${_npartitions}]=`sed -n "s:^/dev/$DISK$_pp[ ]*\([^ ]*\).*:\1:p" < /tmp/fstab.${DISK}` fi _npartitions=$(( ${_npartitions} + 1 )) done @@ -599,10 +599,8 @@ if [ ! -x /mnt/dev/MAKEDEV ]; then fi echo -n "Making all device nodes (by running /dev/MAKEDEV all) ..." -#pid=`twiddle` cd /mnt/dev sh MAKEDEV all -#kill $pid echo "... done." cd / |