summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrelease/bininst8
-rw-r--r--release/extract.sh6
-rw-r--r--release/instdist.sh4
-rw-r--r--release/netinst.sh4
4 files changed, 11 insertions, 11 deletions
diff --git a/release/bininst b/release/bininst
index 4643c4a..55dbd13 100755
--- a/release/bininst
+++ b/release/bininst
@@ -13,7 +13,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
-# $Id: bininst,v 1.39 1994/11/16 07:51:41 jkh Exp $
+# $Id: bininst,v 1.40 1994/11/17 11:53:11 jkh Exp $
if [ "$_BININST_LOADED_" = "yes" ]; then
echo "Error, $0 loaded more than once!"
@@ -28,13 +28,13 @@ TMP=/tmp
# Grab the miscellaneous functions.
-. miscfuncs.sh
+. /stand/miscfuncs.sh
# Grab the installation routines
-. instdist.sh
+. /stand/instdist.sh
# Grab the network setup routines
-. netinst.sh
+. /stand/netinst.sh
# Deal with trigger-happy users.
trap interrupt 1 2 15
diff --git a/release/extract.sh b/release/extract.sh
index 84c307f..793c1d2 100644
--- a/release/extract.sh
+++ b/release/extract.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: extract.sh,v 1.10 1994/11/12 09:55:29 jkh Exp $
+# $Id: extract.sh,v 1.11 1994/11/17 11:53:12 jkh Exp $
PATH=/stand:$PATH
DDIR=/
@@ -9,7 +9,7 @@ if [ -f bin_tgz.aa ] ; then
cp $DDIR/etc/hosts $DDIR/etc/myname $DDIR/stand/etc
fi
echo; echo "Extracting bindist, please wait."
- cat bin_tgz.?? | gzip -c -d | tar --unlink -xvf - -C $DDIR
+ cat bin_tgz.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
if [ -f $DDIR/stand/etc/myname ]; then
# Add back what the bindist nuked.
cp $DDIR/stand/etc/myname $DDIR/etc
@@ -27,6 +27,6 @@ do
mv /sbin/init /sbin/nondes_init
fi
echo "Extracting $b"
- cat $b.?? | gzip -c -d | tar --unlink -xvf - -C $DDIR
+ cat $b.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
fi
done
diff --git a/release/instdist.sh b/release/instdist.sh
index 4243f3f..1ec5eb9 100644
--- a/release/instdist.sh
+++ b/release/instdist.sh
@@ -10,7 +10,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
-# $Id: instdist.sh,v 1.4 1994/11/17 15:20:02 jkh Exp $
+# $Id: instdist.sh,v 1.5 1994/11/17 16:18:35 jkh Exp $
if [ "$_INSTINST_SH_LOADED_" = "yes" ]; then
return 0
@@ -19,7 +19,7 @@ else
fi
# Grab the miscellaneous functions.
-. miscfuncs.sh
+. /stand/miscfuncs.sh
# Set some reasonable defaults.
TAR=tar
diff --git a/release/netinst.sh b/release/netinst.sh
index 3afc72a..8da7883 100644
--- a/release/netinst.sh
+++ b/release/netinst.sh
@@ -10,7 +10,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
-# $Id: netinst.sh,v 1.1 1994/11/16 07:51:45 jkh Exp $
+# $Id: netinst.sh,v 1.2 1994/11/17 11:53:14 jkh Exp $
if [ "$_NETINST_SH_LOADED_" = "yes" ]; then
return 0
@@ -24,7 +24,7 @@ ROUTE=route
ROUTE_FLAGS="add default"
# Grab the miscellaneous functions.
-. miscfuncs.sh
+. /stand/miscfuncs.sh
network_setup_ether()
{
OpenPOWER on IntegriCloud