1995-04-27 12:50:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994, Paul Richards.
|
1995-05-30 08:29:07 +00:00
|
|
|
*
|
1995-04-27 12:50:35 +00:00
|
|
|
* All rights reserved.
|
1995-05-30 08:29:07 +00:00
|
|
|
*
|
1995-04-27 12:50:35 +00:00
|
|
|
* This software may be used, modified, copied, distributed, and sold, in both
|
|
|
|
* source and binary form provided that the above copyright and these terms
|
|
|
|
* are retained, verbatim, as the first lines of this file. Under no
|
|
|
|
* circumstances is the author responsible for the proper functioning of this
|
|
|
|
* software, nor does the author assume any responsibility for damages
|
|
|
|
* incurred with its use.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <fcntl.h>
|
1995-05-26 08:41:52 +00:00
|
|
|
#include <sys/errno.h>
|
1995-04-27 12:50:35 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <machine/console.h>
|
|
|
|
|
|
|
|
#include "sysinstall.h"
|
|
|
|
|
1996-08-01 10:58:54 +00:00
|
|
|
#define VTY_STATUS_LINE 24
|
|
|
|
#define TTY_STATUS_LINE 23
|
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
int
|
|
|
|
set_termcap(void)
|
|
|
|
{
|
|
|
|
char *term;
|
1995-05-18 15:29:47 +00:00
|
|
|
int stat;
|
1996-08-01 10:58:54 +00:00
|
|
|
struct ttysize ts;
|
1995-04-27 12:50:35 +00:00
|
|
|
|
|
|
|
term = getenv("TERM");
|
1995-05-18 15:29:47 +00:00
|
|
|
stat = ioctl(STDERR_FILENO, GIO_COLOR, &ColorDisplay);
|
1995-06-11 19:33:05 +00:00
|
|
|
|
1996-06-11 08:02:09 +00:00
|
|
|
if (getpid() != 1) {
|
1995-06-11 19:33:05 +00:00
|
|
|
DebugFD = open("sysinstall.debug", O_WRONLY|O_CREAT|O_TRUNC, 0644);
|
1996-06-11 08:02:09 +00:00
|
|
|
if (DebugFD < 0)
|
|
|
|
DebugFD = open("/dev/null", O_RDWR, 0);
|
|
|
|
}
|
1995-06-11 19:33:05 +00:00
|
|
|
|
1996-09-26 21:07:11 +00:00
|
|
|
if (!OnVTY || (stat < 0)) {
|
1995-05-18 15:29:47 +00:00
|
|
|
if (!term) {
|
1995-04-27 12:50:35 +00:00
|
|
|
if (setenv("TERM", "vt100", 1) < 0)
|
|
|
|
return -1;
|
|
|
|
if (setenv("TERMCAP", termcap_vt100, 1) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
1995-05-18 15:29:47 +00:00
|
|
|
if (DebugFD == -1)
|
|
|
|
DebugFD = dup(1);
|
1995-05-05 23:47:47 +00:00
|
|
|
}
|
|
|
|
else {
|
1995-06-11 19:33:05 +00:00
|
|
|
int i, on;
|
|
|
|
|
1996-03-21 09:30:18 +00:00
|
|
|
if (getpid() == 1) {
|
|
|
|
DebugFD = open("/dev/ttyv1", O_WRONLY);
|
|
|
|
on = 1;
|
|
|
|
i = ioctl(DebugFD, TIOCCONS, (char *)&on);
|
|
|
|
msgDebug("ioctl(%d, TIOCCONS, NULL) = %d (%s)\n", DebugFD, i, !i ? "success" : strerror(errno));
|
|
|
|
}
|
1995-05-18 15:29:47 +00:00
|
|
|
if (ColorDisplay) {
|
|
|
|
if (!term) {
|
|
|
|
if (setenv("TERM", "cons25", 1) < 0)
|
|
|
|
return -1;
|
|
|
|
if (setenv("TERMCAP", termcap_cons25, 1) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!term) {
|
|
|
|
if (setenv("TERM", "cons25-m", 1) < 0)
|
|
|
|
return -1;
|
|
|
|
if (setenv("TERMCAP", termcap_cons25_m, 1) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|
1996-08-01 10:58:54 +00:00
|
|
|
if (ioctl(0, TIOCGSIZE, &ts) == -1) {
|
|
|
|
msgDebug("Unable to get terminal size - errno %d\n", errno);
|
1996-08-01 13:47:03 +00:00
|
|
|
ts.ts_lines = 0;
|
1996-08-01 10:58:54 +00:00
|
|
|
}
|
1996-08-01 13:47:03 +00:00
|
|
|
StatusLine = ts.ts_lines ? ts.ts_lines : (OnVTY ? VTY_STATUS_LINE : TTY_STATUS_LINE);
|
1995-04-27 12:50:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|