summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/media.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-04-28 00:37:38 +0000
committerjkh <jkh@FreeBSD.org>1996-04-28 00:37:38 +0000
commit7a8e35fbab581e26b8a60eeea29077d5d66b9e11 (patch)
tree0307af9337b282b1a89c65dc03255a7be7559a9c /usr.sbin/sysinstall/media.c
parent277b92f12a78fa1f0407e5c6e0ef5e8d55c6524c (diff)
downloadFreeBSD-src-7a8e35fbab581e26b8a60eeea29077d5d66b9e11.zip
FreeBSD-src-7a8e35fbab581e26b8a60eeea29077d5d66b9e11.tar.gz
Bump snapshot release date - looks like I was off by a couple
of days! More display fixes to sysinstall and assorted tweaking.
Diffstat (limited to 'usr.sbin/sysinstall/media.c')
-rw-r--r--usr.sbin/sysinstall/media.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c
index 293e7e9..a69e7df 100644
--- a/usr.sbin/sysinstall/media.c
+++ b/usr.sbin/sysinstall/media.c
@@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
- * $Id: media.c,v 1.34 1996/04/25 17:31:22 jkh Exp $
+ * $Id: media.c,v 1.35 1996/04/26 18:19:34 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -87,7 +87,7 @@ mediaSetCDROM(dialogMenuItem *self)
"configuration is correct and that the CDROM drive is of a supported\n"
"type. For more information, consult the hardware guide\n"
"in the Doc menu.");
- return DITEM_FAILURE;
+ return DITEM_FAILURE | DITEM_CONTINUE;
}
else if (cnt > 1) {
DMenu *menu;
@@ -128,7 +128,7 @@ mediaSetFloppy(dialogMenuItem *self)
msgConfirm("No floppy devices found! Please check that your system's configuration\n"
"is correct. For more information, consult the hardware guide in the Doc\n"
"menu.");
- return DITEM_FAILURE;
+ return DITEM_FAILURE | DITEM_CONTINUE;
}
else if (cnt > 1) {
DMenu *menu;
@@ -167,7 +167,7 @@ mediaSetDOS(dialogMenuItem *self)
cnt = deviceCount(devs);
if (!cnt) {
msgConfirm("No DOS primary partitions found! This installation method is unavailable");
- return DITEM_FAILURE;
+ return DITEM_FAILURE | DITEM_CONTINUE;
}
else if (cnt > 1) {
DMenu *menu;
@@ -208,7 +208,7 @@ mediaSetTape(dialogMenuItem *self)
msgConfirm("No tape drive devices found! Please check that your system's configuration\n"
"is correct. For more information, consult the hardware guide in the Doc\n"
"menu.");
- return DITEM_FAILURE;
+ return DITEM_FAILURE | DITEM_CONTINUE;
}
else if (cnt > 1) {
DMenu *menu;
OpenPOWER on IntegriCloud