summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-10-22 17:39:29 +0000
committerjkh <jkh@FreeBSD.org>1995-10-22 17:39:29 +0000
commitadc8dfe93367460423845eaff2b09ee3a28c76fd (patch)
treed96db45c0fe5170da5b30b9a49df12828ca8c923 /release
parent212c8f1ba7c62342e90ba294aac4b2e0e1faed00 (diff)
downloadFreeBSD-src-adc8dfe93367460423845eaff2b09ee3a28c76fd.zip
FreeBSD-src-adc8dfe93367460423845eaff2b09ee3a28c76fd.tar.gz
Second round of screen update changes. Now handle the yes/no dialogs
as well as the confirmation dialogs.
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/doc.c1
-rw-r--r--release/sysinstall/installPreconfig.c6
-rw-r--r--release/sysinstall/installUpgrade.c6
3 files changed, 10 insertions, 3 deletions
diff --git a/release/sysinstall/doc.c b/release/sysinstall/doc.c
index d6a0b44..e057480 100644
--- a/release/sysinstall/doc.c
+++ b/release/sysinstall/doc.c
@@ -47,6 +47,7 @@ docBrowser(char *junk)
return RET_FAIL;
}
if (!file_executable(variable_get(VAR_BROWSER_BINARY))) {
+ dialog_clear();
if (!msgYesNo("Hmmm. The %s package claims to have installed, but I can't\n"
"find its binary in %s! You may wish to try a different\n"
"location to load the package from (go to Media menu) and see if that\n"
diff --git a/release/sysinstall/installPreconfig.c b/release/sysinstall/installPreconfig.c
index 5038f13..0a0ab6d 100644
--- a/release/sysinstall/installPreconfig.c
+++ b/release/sysinstall/installPreconfig.c
@@ -148,6 +148,7 @@ installPreconfig(char *str)
if (mount(MOUNT_UFS, "/mnt2", MNT_RDONLY, (caddr_t)&u_args) == -1) {
if (mount(MOUNT_MSDOS, "/mnt2", MNT_RDONLY, (caddr_t)&m_args) == -1) {
+ dialog_clear();
if (msgYesNo("Unable to mount the configuration floppy - do you want to try again?"))
break;
else
@@ -161,8 +162,9 @@ installPreconfig(char *str)
msgDebug("Attempting to open configuration file: %s\n", buf);
fd = open(buf, O_RDONLY);
if (fd == -1) {
- if (msgYesNo("Unable to find the configuration file `%s' - do you want to\n"
- "try again?", buf)) {
+ dialog_clear();
+ if (msgYesNo("Unable to find the configuration file: %s\n"
+ "Do you want to try again?", buf)) {
unmount("/mnt2", 0);
break;
}
diff --git a/release/sysinstall/installUpgrade.c b/release/sysinstall/installUpgrade.c
index 9cc020a..0c563ce 100644
--- a/release/sysinstall/installUpgrade.c
+++ b/release/sysinstall/installUpgrade.c
@@ -197,6 +197,7 @@ installUpgrade(char *str)
/* No bin selected? Not much of an upgrade.. */
if (!(Dists & DIST_BIN)) {
+ dialog_clear();
if (msgYesNo("You didn't select the bin distribution as one of the distributons to load.\n"
"This one is pretty vital to a successful 2.1 upgrade. Are you SURE you don't\n"
"want to select the bin distribution? Chose _No_ to bring up the Distributions\n"
@@ -257,6 +258,7 @@ installUpgrade(char *str)
while (!saved_etc) {
saved_etc = msgGetInput("/usr/tmp/etc", "Under which directory do you wish to save your current /etc?");
if (!saved_etc || !*saved_etc || Mkdir(saved_etc, NULL)) {
+ dialog_clear();
if (msgYesNo("Directory was not specified, was invalid or user selected Cancel.\n\n"
"Doing an upgrade without first backing up your /etc directory is a very\n"
"bad idea! Do you want to go back and specify the save directory again?"))
@@ -271,10 +273,12 @@ installUpgrade(char *str)
}
if (file_readable("/kernel")) {
msgNotify("Moving old kernel to /kernel.205");
- if (system("chflags noschg /mnt/kernel && mv /mnt/kernel /mnt/kernel.205"))
+ if (system("chflags noschg /mnt/kernel && mv /mnt/kernel /mnt/kernel.205")) {
+ dialog_clear();
if (!msgYesNo("Hmmm! I couldn't move the old kernel over! Do you want to\n"
"treat this as a big problem and abort the upgrade?"))
return RET_FAIL;
+ }
}
}
msgNotify("Beginning extraction of distributions..");
OpenPOWER on IntegriCloud