diff options
author | obrien <obrien@FreeBSD.org> | 2000-05-16 22:05:32 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-05-16 22:05:32 +0000 |
commit | 406f1714dbaea520814643504466a34dd4d78bad (patch) | |
tree | 3d8c1df5f0cf552d34e29e3e671dd2dd65bf1d78 /usr.sbin/sade | |
parent | e3cda7421d1200af9960288af861554b935f0fcd (diff) | |
download | FreeBSD-src-406f1714dbaea520814643504466a34dd4d78bad.zip FreeBSD-src-406f1714dbaea520814643504466a34dd4d78bad.tar.gz |
Add an option to select the Fix-it tty. The current behavior is utterly
*useless* on serial consoled machines.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/install.c | 28 | ||||
-rw-r--r-- | usr.sbin/sade/sade.h | 1 |
2 files changed, 20 insertions, 9 deletions
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index db5719e..db3a990 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -398,17 +398,20 @@ fixit_common(void) if (!file_readable(TERMCAP_FILE)) create_termcap(); if (!(child = fork())) { - int i, fd; + int i, fd, fdstop; struct termios foo; extern int login_tty(int); ioctl(0, TIOCNOTTY, NULL); - for (i = getdtablesize(); i >= 0; --i) + fdstop = strcmp(variable_get(VAR_FIXIT_TTY), "serial") == 0 ? 3 : 0; + for (i = getdtablesize(); i >= fdstop; --i) close(i); - fd = open("/dev/ttyv3", O_RDWR); - ioctl(0, TIOCSCTTY, &fd); - dup2(0, 1); - dup2(0, 2); + if (strcmp(variable_get(VAR_FIXIT_TTY), "standard") == 0) { + fd = open("/dev/ttyv3", O_RDWR); + ioctl(0, TIOCSCTTY, &fd); + dup2(0, 1); + dup2(0, 2); + } DebugFD = 2; if (login_tty(fd) == -1) msgDebug("fixit: I can't set the controlling terminal.\n"); @@ -432,9 +435,15 @@ fixit_common(void) } else { dialog_clear_norefresh(); - msgNotify("Waiting for fixit shell to exit. Go to VTY4 now by\n" - "typing ALT-F4. When you are done, type ``exit'' to exit\n" - "the fixit shell and be returned here."); + if (strcmp(variable_get(VAR_FIXIT_TTY), "standard") == 0) { + msgNotify("Waiting for fixit shell to exit. Go to VTY4 now by\n" + "typing ALT-F4. When you are done, type ``exit'' to exit\n" + "the fixit shell and be returned here."); + } else { + msgNotify("Waiting for fixit shell to exit.\n" + "When you are done, type ``exit'' to exit\n" + "the fixit shell and be returned here."); + } (void)waitpid(child, &waitstatus, 0); } dialog_clear(); @@ -1086,6 +1095,7 @@ installVarDefaults(dialogMenuItem *self) variable_set2(VAR_BROWSER_BINARY, "/usr/local/bin/lynx", 0); variable_set2(VAR_FTP_STATE, "passive", 0); variable_set2(VAR_NFS_SECURE, "NO", -1); + variable_set2(VAR_FIXIT_TTY, "standard", 0); variable_set2(VAR_PKG_TMPDIR, "/usr/tmp", 0); variable_set2(VAR_MEDIA_TIMEOUT, itoa(MEDIA_TIMEOUT), 0); if (getpid() != 1) diff --git a/usr.sbin/sade/sade.h b/usr.sbin/sade/sade.h index b3e6494..c772a9b 100644 --- a/usr.sbin/sade/sade.h +++ b/usr.sbin/sade/sade.h @@ -103,6 +103,7 @@ #define VAR_EXTRAS "ifconfig_" #define VAR_COMMAND "command" #define VAR_CONFIG_FILE "configFile" +#define VAR_FIXIT_TTY "fixitTty" #define VAR_FTP_DIR "ftpDirectory" #define VAR_FTP_PASS "ftpPass" #define VAR_FTP_PATH "_ftpPath" |