summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/options.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-11-06 12:49:27 +0000
committerjkh <jkh@FreeBSD.org>1995-11-06 12:49:27 +0000
commit70e33173922ad4e39017ab578a3fe083ecc6b794 (patch)
tree216b59d8495cb89e5a2a7ebbcea3bee4de0eca17 /release/sysinstall/options.c
parentaa13ab02a26aef760ba7f42528305d7b01c74e92 (diff)
downloadFreeBSD-src-70e33173922ad4e39017ab578a3fe083ecc6b794.zip
FreeBSD-src-70e33173922ad4e39017ab578a3fe083ecc6b794.tar.gz
Some general fixes for the package menu (still need to fix the "more than 10
items checked bug though). Now allow user to specify a PKG_TMPDIR. If not selected, we try to make one.
Diffstat (limited to 'release/sysinstall/options.c')
-rw-r--r--release/sysinstall/options.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/release/sysinstall/options.c b/release/sysinstall/options.c
index 7aec6aa..c9c099a 100644
--- a/release/sysinstall/options.c
+++ b/release/sysinstall/options.c
@@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated for what's essentially a complete rewrite.
*
- * $Id: options.c,v 1.25 1995/10/26 08:56:06 jkh Exp $
+ * $Id: options.c,v 1.26 1995/11/03 12:02:44 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -52,7 +52,7 @@ varCheck(Option opt)
if (opt.aux)
cp = variable_get((char *)opt.aux);
if (!cp)
- return "NO";
+ return "<not set>";
return cp;
}
@@ -105,6 +105,7 @@ mediaCheck(Option opt)
#define BPKG_PROMPT "Please specify the name of the HTML browser package:"
#define BBIN_PROMPT "Please specify a full pathname to the HTML browser binary:"
#define RETRY_PROMPT "Please specify the number of times to retry an FTP request:"
+#define PKG_PROMPT "Please specify a temporary directory with lots of free space:"
static Option Options[] = {
{ "NFS Secure", "NFS server talks only on a secure port",
@@ -133,6 +134,8 @@ static Option Options[] = {
OPT_IS_VAR, BBIN_PROMPT, VAR_BROWSER_BINARY, varCheck },
{ "Media Type", "The current installation media type.",
OPT_IS_FUNC, mediaGetType, VAR_MEDIA_TYPE, mediaCheck },
+{ "Package Temp", "The directory where package temporary files should go",
+ OPT_IS_VAR, PKG_PROMPT, "PKG_TMPDIR", varCheck },
{ "Use Defaults", "Reset all values to startup defaults",
OPT_IS_FUNC, installVarDefaults, 0, resetLogo },
{ NULL },
OpenPOWER on IntegriCloud