From: Keir Fraser Date: Wed, 11 Mar 2009 10:08:31 +0000 (+0000) Subject: xenconsole: Compile fixes for console code on Solaris X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13992^2~121 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5a039efe118ed8aa338bf02b5d88c1dcae9534b3;p=xen.git xenconsole: Compile fixes for console code on Solaris Signed-off-by: John Levon --- diff --git a/tools/console/client/main.c b/tools/console/client/main.c index 509e44bf91..6fb41114b6 100644 --- a/tools/console/client/main.c +++ b/tools/console/client/main.c @@ -71,6 +71,21 @@ static void usage(const char *program) { , program); } +#ifdef __sun__ +void cfmakeraw (struct termios *termios_p) +{ + termios_p->c_iflag &= + ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); + termios_p->c_oflag &= ~OPOST; + termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); + termios_p->c_cflag &= ~(CSIZE|PARENB); + termios_p->c_cflag |= CS8; + + termios_p->c_cc[VMIN] = 0; + termios_p->c_cc[VTIME] = 0; +} +#endif + static int get_pty_fd(struct xs_handle *xs, char *path, int seconds) /* Check for a pty in xenstore, open it and return its fd. * Assumes there is already a watch set in the store for this path. */ diff --git a/tools/console/daemon/main.c b/tools/console/daemon/main.c index c1529d0ac2..60faa4bb2a 100644 --- a/tools/console/daemon/main.c +++ b/tools/console/daemon/main.c @@ -86,7 +86,9 @@ int main(int argc, char **argv) version(argv[0]); exit(0); case 'v': +#ifndef __sun__ syslog_option |= LOG_PERROR; +#endif syslog_mask = LOG_DEBUG; break; case 'i':