aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/sysinstall.h
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>2000-02-29 10:40:59 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>2000-02-29 10:40:59 +0000
commit7140b4def8be48c12114b1cc16300ae0d2c1b86d (patch)
tree39caf5cdaf238a3aefe950fa74641c78b2cb8451 /release/sysinstall/sysinstall.h
parent2394baefd82191f0570093bc0e567e9553763193 (diff)
downloadsrc-7140b4def8be48c12114b1cc16300ae0d2c1b86d.tar.gz
src-7140b4def8be48c12114b1cc16300ae0d2c1b86d.zip
o Add support for loading the rsaref or rsaintl packages, depending
on locale. o Allow use of "G" in label editor to stand for gigabytes. This is actually an unrelated patch which I meant to commit separately but what the heck, it's late. Partially submitted by: phk
Notes
Notes: svn path=/head/; revision=57617
Diffstat (limited to 'release/sysinstall/sysinstall.h')
-rw-r--r--release/sysinstall/sysinstall.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/sysinstall/sysinstall.h b/release/sysinstall/sysinstall.h
index a07d4fef13ca..2d3bf6f05158 100644
--- a/release/sysinstall/sysinstall.h
+++ b/release/sysinstall/sysinstall.h
@@ -174,6 +174,7 @@
/* One MB worth of blocks */
#define ONE_MEG 2048
+#define ONE_GIG (ONE_MEG * 1024)
/* Which selection attributes to use */
#define ATTR_SELECTED (ColorDisplay ? item_selected_attr : item_attr)
@@ -340,7 +341,8 @@ extern Boolean RunningAsInit; /* Are we running stand-alone? */
extern Boolean DialogActive; /* Is the dialog() stuff up? */
extern Boolean ColorDisplay; /* Are we on a color display? */
extern Boolean OnVTY; /* On a syscons VTY? */
-Boolean USAResident; /* Are we cryptographically challenged? */
+Boolean PkgInteractive; /* Is the package going to spew at us? */
+Boolean USAResident; /* Are we cryptographically challenged? */
extern Variable *VarHead; /* The head of the variable chain */
extern Device *mediaDevice; /* Where we're getting our distribution from */
extern unsigned int Dists; /* Which distributions we want */