diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-02-18 16:01:53 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-02-18 16:01:53 +0000 |
commit | 9b98ced200bc2dd3773bbf7ab501516d7fe73914 (patch) | |
tree | 6231806b220723cb6974f241ac7b77d94975a5c4 /distrib/mvme68k | |
parent | 7866c652fa364a87c32860a4aeea4ebba0a87131 (diff) |
Add cvs tag, change tar to pax in a couple of places, tar is not on the
ramdisk image.
Diffstat (limited to 'distrib/mvme68k')
-rw-r--r-- | distrib/mvme68k/ramdisk/install.sub | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/distrib/mvme68k/ramdisk/install.sub b/distrib/mvme68k/ramdisk/install.sub index d7c576737f2..2dcca728ff7 100644 --- a/distrib/mvme68k/ramdisk/install.sub +++ b/distrib/mvme68k/ramdisk/install.sub @@ -1,4 +1,5 @@ #!/bin/sh +# $OpenBSD: install.sub,v 1.3 1997/02/18 16:01:52 rahnds Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -36,7 +37,7 @@ # POSSIBILITY OF SUCH DAMAGE. # -# NetBSD installation/upgrade script - common subroutines. +# OpenBSD installation/upgrade script - common subroutines. ROOTDISK="" # filled in below VERSION= # filled in automatically (see list) @@ -654,7 +655,7 @@ install_from_mounted_fs() { fi # Extract file - cat $_filename | (cd /mnt; tar --unlink -zxvpf -) + cat $_filename | (cd /mnt; pax -r -pe -z ) echo "Extraction complete." _setsdone="$_f $_setsdone" @@ -1010,11 +1011,11 @@ __install_tape_2 getresp "1" case "$resp" in 1) - _xcmd="tar --unlink -zxvpf -" + _xcmd="pax -r -pe -z" ;; 2) - _xcmd="tar --unlink -xvpf -" + _xcmd="pax -r -pe" ;; *) |