diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-02-21 15:39:04 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-02-21 15:39:04 +0000 |
commit | b1d1a585310de4e1db8f2c22f1de4f7e97b22d0e (patch) | |
tree | f53e39cac9232d630002a2d914403a6f868eb62c /distrib | |
parent | 37cba16acbd9e7b60e48cccf0ddb0c168226ca39 (diff) |
add files typically included in snapshot as files that show up in
the "ALLSETS" list for miniroot installation from disk.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/powerpc/miniroot/install.sub | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/distrib/powerpc/miniroot/install.sub b/distrib/powerpc/miniroot/install.sub index 23f6e95ec1b..1575e1c7e17 100644 --- a/distrib/powerpc/miniroot/install.sub +++ b/distrib/powerpc/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.3 1997/02/18 15:46:38 rahnds Exp $ +# $OpenBSD: install.sub,v 1.4 1997/02/21 15:39:03 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. @@ -43,7 +43,12 @@ ROOTDISK="" # filled in below VERSION= # filled in automatically (see list) export VERSION -ALLSETS="base comp etc games man misc text" # default install sets +ALLDIST="base comp etc games man misc text" # default install sets +ALLSNAP_1="etc games man misc text bin dev sbin" +ALLSNAP_2="usr.bin usr.binutils usr .games usr.include" +ALLSNAP_3="usr.lib usr.libexec usr.misc usr.sbin usr.share var" +ALLSETS="${ALLDIST} ${ALLSNAP_1} ${ALLSNAP_2} ${ALLSNAP_3}" + UPGRSETS="base comp games man misc text" # default upgrade sets THESETS= # one of the above @@ -625,7 +630,6 @@ install_from_mounted_fs() { for _f in $_sets ; do if isin $_f $_setsdone; then echo -n "[X] " - _next="" else echo -n " " if [ -z "$_next" ]; then _next=$_f; fi |