Update Solaris cfmakeraw() emulation

Now it matches the OpenSolaris version of GNU GRUB.
This commit is contained in:
Lassi Kortela 2019-10-14 13:25:35 +03:00
parent c048a8ee6c
commit 7da26c7170
1 changed files with 2 additions and 4 deletions

View File

@ -19,12 +19,10 @@ char *get_exename(char *buf, size_t size)
void cfmakeraw(struct termios *t)
{
t->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR |
IGNCR | ICRNL | IXON);
t->c_iflag &=
~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
t->c_oflag &= ~OPOST;
t->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
t->c_cflag &= ~(CSIZE | PARENB);
t->c_cflag |= CS8;
t->c_cc[VMIN] = 1;
t->c_cc[VTIME] = 0;
}