From: Alan Cox Date: Sat, 13 Jun 2015 09:46:07 +0000 (+0100) Subject: mtx: add vtattr_cap and note awkward special case to do X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=00250ea4d5a7cee926895835fae770d4ff6d53a9;p=FUZIX.git mtx: add vtattr_cap and note awkward special case to do --- diff --git a/Kernel/platform-mtx/devtty.c b/Kernel/platform-mtx/devtty.c index 2654c066..f3f7acd6 100644 --- a/Kernel/platform-mtx/devtty.c +++ b/Kernel/platform-mtx/devtty.c @@ -22,6 +22,10 @@ uint8_t curtty; /* output side */ uint8_t inputtty; /* input side */ static struct vt_switch ttysave[2]; +/* FIXME: this will eventually vary by tty so we'll need to either load + it then call the vt ioctl or just intercept the vt ioctl */ +uint8_t vtattr_cap; + char tbuf1[TTYSIZ]; char tbuf2[TTYSIZ]; char tbuf3[TTYSIZ];