summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/sysinstall/main.c')
-rw-r--r--release/sysinstall/main.c28
1 files changed, 1 insertions, 27 deletions
diff --git a/release/sysinstall/main.c b/release/sysinstall/main.c
index bbd6281..2f1f3a2 100644
--- a/release/sysinstall/main.c
+++ b/release/sysinstall/main.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$
+ * $Id: main.c,v 1.43 1997/02/22 14:11:55 peter Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -118,32 +118,6 @@ main(int argc, char **argv)
}
fclose(fp);
}
-#if defined(LOAD_CONFIG_FILE)
- else {
- /* If we have a compiled-in startup config file name on
- the floppy, look for it and try to load it on startup */
- extern char *distWanted;
-
- /* Tell mediaSetFloppy() to try floppy now */
- distWanted = LOAD_CONFIG_FILE;
-
- /* Try to open the floppy drive if we can do that first */
- if (DITEM_STATUS(mediaSetFloppy(NULL)) != DITEM_FAILURE && mediaDevice->init(mediaDevice)) {
- fp = mediaDevice->get(mediaDevice, LOAD_CONFIG_FILE, TRUE);
- if (fp) {
- msgNotify("Loading %s pre-configuration file", LOAD_CONFIG_FILE);
- while (fgets(buf, sizeof buf, fp)) {
- if (DITEM_STATUS(dispatchCommand(buf)) != DITEM_SUCCESS) {
- msgDebug("Command `%s' failed - rest of script aborted.\n", buf);
- break;
- }
- }
- fclose(fp);
- }
- mediaDevice->shutdown(mediaDevice);
- }
- }
-#endif
}
/* Begin user dialog at outer menu */
OpenPOWER on IntegriCloud