1995-04-27 12:50:35 +00:00
|
|
|
/*
|
|
|
|
* The new sysinstall program.
|
|
|
|
*
|
|
|
|
* This is probably the last attempt in the `sysinstall' line, the next
|
|
|
|
* generation being slated for what's essentially a complete rewrite.
|
|
|
|
*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1995-04-27 12:50:35 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Jordan Hubbard. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
1995-05-30 08:29:07 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* verbatim and that no modifications are made prior to this
|
1995-04-27 12:50:35 +00:00
|
|
|
* point in the file.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sysinstall.h"
|
1995-12-07 10:34:59 +00:00
|
|
|
#include <sys/signal.h>
|
1996-09-26 21:03:35 +00:00
|
|
|
#include <sys/fcntl.h>
|
1995-12-07 10:34:59 +00:00
|
|
|
|
2000-10-29 09:57:50 +00:00
|
|
|
const char *StartName; /* Initial contents of argv[0] */
|
|
|
|
|
1995-12-07 10:34:59 +00:00
|
|
|
static void
|
|
|
|
screech(int sig)
|
|
|
|
{
|
1997-02-20 16:29:12 +00:00
|
|
|
msgDebug("\007Signal %d caught! That's bad!\n", sig);
|
1997-04-20 16:46:36 +00:00
|
|
|
longjmp(BailOut, sig);
|
1995-12-07 10:34:59 +00:00
|
|
|
}
|
1995-04-27 12:50:35 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
1997-04-20 16:46:36 +00:00
|
|
|
int choice, scroll, curr, max, status;
|
2000-10-29 09:57:50 +00:00
|
|
|
|
|
|
|
/* Record name to be able to restart */
|
|
|
|
StartName = argv[0];
|
1995-04-27 12:50:35 +00:00
|
|
|
|
1996-04-07 03:52:36 +00:00
|
|
|
/* Catch fatal signals and complain about them if running as init */
|
1995-12-07 10:34:59 +00:00
|
|
|
if (getpid() == 1) {
|
|
|
|
signal(SIGBUS, screech);
|
|
|
|
signal(SIGSEGV, screech);
|
|
|
|
}
|
2000-01-04 04:31:29 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
1996-04-07 03:52:36 +00:00
|
|
|
|
|
|
|
/* We don't work too well when running as non-root anymore */
|
1995-05-04 03:51:22 +00:00
|
|
|
if (geteuid() != 0) {
|
1996-04-07 03:52:36 +00:00
|
|
|
fprintf(stderr, "Error: This utility should only be run as root.\n");
|
|
|
|
return 1;
|
1995-05-04 03:51:22 +00:00
|
|
|
}
|
1996-04-07 03:52:36 +00:00
|
|
|
|
2000-06-05 13:17:23 +00:00
|
|
|
#ifdef PC98
|
|
|
|
{
|
|
|
|
/* XXX */
|
|
|
|
char *p = getenv("TERM");
|
|
|
|
if (p && strcmp(p, "cons25") == 0)
|
|
|
|
putenv("TERM=cons25w");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Set up whatever things need setting up */
|
|
|
|
systemInitialize(argc, argv);
|
|
|
|
|
1996-04-28 20:54:11 +00:00
|
|
|
/* Set default flag and variable values */
|
|
|
|
installVarDefaults(NULL);
|
1998-03-10 13:42:05 +00:00
|
|
|
/* only when multi-user is it reasonable to do this here */
|
|
|
|
if (!RunningAsInit)
|
|
|
|
installEnvironment();
|
1997-02-14 20:59:07 +00:00
|
|
|
|
1996-04-28 20:54:11 +00:00
|
|
|
if (argc > 1 && !strcmp(argv[1], "-fake")) {
|
1999-02-05 22:15:52 +00:00
|
|
|
variable_set2(VAR_DEBUG, "YES", 0);
|
1996-04-28 20:54:11 +00:00
|
|
|
Fake = TRUE;
|
|
|
|
msgConfirm("I'll be just faking it from here on out, OK?");
|
|
|
|
}
|
2001-10-12 07:36:34 +00:00
|
|
|
if (argc > 1 && !strcmp(argv[1], "-restart"))
|
|
|
|
Restarting = TRUE;
|
1996-04-28 20:54:11 +00:00
|
|
|
|
1995-06-11 19:33:05 +00:00
|
|
|
/* Try to preserve our scroll-back buffer */
|
1996-12-12 08:23:51 +00:00
|
|
|
if (OnVTY) {
|
1995-06-11 19:33:05 +00:00
|
|
|
for (curr = 0; curr < 25; curr++)
|
|
|
|
putchar('\n');
|
1996-12-12 08:23:51 +00:00
|
|
|
}
|
1997-01-29 21:45:30 +00:00
|
|
|
/* Move stderr aside */
|
|
|
|
if (DebugFD)
|
|
|
|
dup2(DebugFD, 2);
|
1995-06-11 19:33:05 +00:00
|
|
|
|
2001-09-24 10:16:23 +00:00
|
|
|
/* Initialize driver modules, if we haven't already done so (ie,
|
|
|
|
the user hit Ctrl-C -> Restart. */
|
|
|
|
if (!pvariable_get("modulesInitialize")) {
|
|
|
|
moduleInitialize();
|
|
|
|
pvariable_set("modulesInitialize=1");
|
|
|
|
}
|
2000-10-31 07:39:07 +00:00
|
|
|
|
2003-08-20 06:27:21 +00:00
|
|
|
/* Initialize PC Card, if we haven't already done so. */
|
2002-03-29 23:03:17 +00:00
|
|
|
#ifdef PCCARD_ARCH
|
2003-08-20 06:24:12 +00:00
|
|
|
if (!variable_cmp(VAR_SKIP_PCCARD, "YES") &&
|
|
|
|
variable_get(VAR_SKIP_PCCARD)!=1 &&
|
|
|
|
!pvariable_get("pccardInitialize")) {
|
2001-09-24 10:16:23 +00:00
|
|
|
pccardInitialize();
|
|
|
|
pvariable_set("pccardInitialize=1");
|
|
|
|
}
|
2002-03-29 23:03:17 +00:00
|
|
|
#endif
|
1999-06-17 19:04:56 +00:00
|
|
|
|
2001-09-24 10:16:23 +00:00
|
|
|
/* Initialize USB, if we haven't already done so. */
|
|
|
|
if (!pvariable_get("usbInitialize")) {
|
|
|
|
usbInitialize();
|
|
|
|
pvariable_set("usbInitialize=1");
|
|
|
|
}
|
2000-05-12 03:01:17 +00:00
|
|
|
|
1995-05-16 11:37:27 +00:00
|
|
|
/* Probe for all relevant devices on the system */
|
|
|
|
deviceGetAll();
|
|
|
|
|
2003-01-15 21:47:36 +00:00
|
|
|
/* Prompt for the driver floppy if appropriate. */
|
|
|
|
if (!pvariable_get("driverFloppyCheck")) {
|
|
|
|
driverFloppyCheck();
|
|
|
|
pvariable_set("driverFloppyCheck=1");
|
|
|
|
}
|
|
|
|
|
1996-06-26 09:09:30 +00:00
|
|
|
/* First, see if we have any arguments to process (and argv[0] counts if it's not "sysinstall") */
|
|
|
|
if (!RunningAsInit) {
|
|
|
|
int i, start_arg;
|
|
|
|
|
|
|
|
if (!strstr(argv[0], "sysinstall"))
|
|
|
|
start_arg = 0;
|
2001-10-12 07:36:34 +00:00
|
|
|
else if (Fake || Restarting)
|
1996-07-22 18:43:21 +00:00
|
|
|
start_arg = 2;
|
1996-06-26 09:09:30 +00:00
|
|
|
else
|
|
|
|
start_arg = 1;
|
|
|
|
for (i = start_arg; i < argc; i++) {
|
1996-05-16 11:47:46 +00:00
|
|
|
if (DITEM_STATUS(dispatchCommand(argv[i])) != DITEM_SUCCESS)
|
|
|
|
systemShutdown(1);
|
1996-06-26 09:09:30 +00:00
|
|
|
}
|
|
|
|
if (argc > start_arg)
|
|
|
|
systemShutdown(0);
|
1996-05-16 11:47:46 +00:00
|
|
|
}
|
1997-09-16 18:57:18 +00:00
|
|
|
else
|
|
|
|
dispatch_load_file_int(TRUE);
|
1997-04-20 16:46:36 +00:00
|
|
|
|
|
|
|
status = setjmp(BailOut);
|
|
|
|
if (status) {
|
|
|
|
msgConfirm("A signal %d was caught - I'm saving what I can and shutting\n"
|
2001-03-29 19:56:20 +00:00
|
|
|
"down. If you can reproduce the problem, please turn Debug on\n"
|
|
|
|
"in the Options menu for the extra information it provides\n"
|
|
|
|
"in debugging problems like this.", status);
|
1997-04-20 16:46:36 +00:00
|
|
|
systemShutdown(status);
|
|
|
|
}
|
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Begin user dialog at outer menu */
|
1996-09-08 01:39:25 +00:00
|
|
|
dialog_clear();
|
1995-05-04 19:48:19 +00:00
|
|
|
while (1) {
|
|
|
|
choice = scroll = curr = max = 0;
|
1996-07-02 01:03:55 +00:00
|
|
|
dmenuOpen(&MenuInitial, &choice, &scroll, &curr, &max, TRUE);
|
1999-01-08 00:14:22 +00:00
|
|
|
if (getpid() != 1
|
2002-10-11 22:30:09 +00:00
|
|
|
#if defined(__alpha__) || defined(__sparc64__)
|
2000-12-14 02:49:02 +00:00
|
|
|
|| !msgNoYes("Are you sure you wish to exit? The system will halt.")
|
1999-01-08 00:14:22 +00:00
|
|
|
#else
|
2000-12-14 02:49:02 +00:00
|
|
|
|| !msgNoYes("Are you sure you wish to exit? The system will reboot\n"
|
2001-06-27 17:48:43 +00:00
|
|
|
"(be sure to remove any floppies/CDs/DVDs from the drives).")
|
1999-01-08 00:14:22 +00:00
|
|
|
#endif
|
|
|
|
)
|
1995-05-04 19:48:19 +00:00
|
|
|
break;
|
|
|
|
}
|
1995-05-28 09:31:44 +00:00
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Say goodnight, Gracie */
|
1996-05-16 11:47:46 +00:00
|
|
|
systemShutdown(0);
|
1995-04-27 12:50:35 +00:00
|
|
|
|
1996-05-16 11:47:46 +00:00
|
|
|
return 0; /* We should never get here */
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|