summaryrefslogtreecommitdiffstats
path: root/release/extract.sh
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-11-21 04:14:33 +0000
committerphk <phk@FreeBSD.org>1994-11-21 04:14:33 +0000
commitca54b9f5d7d70d9fa48ce733943d8d7581294dbe (patch)
treec32a895ce49da096ce97cf02164384a0411185aa /release/extract.sh
parent751bbbae08891a7079f130351f4dab4c148a78ee (diff)
downloadFreeBSD-src-ca54b9f5d7d70d9fa48ce733943d8d7581294dbe.zip
FreeBSD-src-ca54b9f5d7d70d9fa48ce733943d8d7581294dbe.tar.gz
More hacks from the last 20 hours...
Diffstat (limited to 'release/extract.sh')
-rw-r--r--release/extract.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/extract.sh b/release/extract.sh
index 8c0c313..bffca5a 100644
--- a/release/extract.sh
+++ b/release/extract.sh
@@ -1,9 +1,9 @@
#!/bin/sh
-# $Id: extract.sh,v 1.13 1994/11/18 10:22:39 jkh Exp $
+# $Id: extract.sh,v 1.14 1994/11/20 22:55:24 phk Exp $
PATH=/stand:$PATH
DDIR=/
-if [ -f bindist_tgz.aa ] ; then
+if [ -f bindist.aa ] ; then
# Temporary kludge for pathological bindist.
if [ -f $DDIR/etc/myname ]; then
cp $DDIR/etc/hosts $DDIR/etc/myname $DDIR/stand/etc
@@ -12,7 +12,7 @@ if [ -f bindist_tgz.aa ] ; then
cp $DDIR/etc/defaultrouter $DDIR/stand/etc
fi
echo; echo "Extracting bindist, please wait."
- cat bin_tgz.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
+ cat bindist.?? | 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,10 +27,10 @@ for i in *.aa
do
b=`basename $i .aa`
if [ "$b" != bin_tgz ] ; then
- if [ "$b" = des_tgz ] ; then
+ if [ "$b" = des ] ; then
# We cannot replace /sbin/init while it runs
# so move it out of the way for now
- mv /sbin/init /sbin/nondes_init
+ mv /sbin/init /sbin/non_des_init
fi
echo "Extracting $b"
cat $b.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
OpenPOWER on IntegriCloud