Update of /cvsroot/linuxconsole/ruby/ruby-2.6/include/linux
In directory sc8-pr-cvs1:/tmp/cvs-serv15552/ruby-2.6/include/linux
Modified Files:
vt_kern.h
Log Message:
reanime /dev/vc/0, keyboard leds
Index: vt_kern.h
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/include/linux/vt_kern.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- vt_kern.h 16 Sep 2003 06:54:42 -0000 1.3
+++ vt_kern.h 29 Sep 2003 08:50:56 -0000 1.4
@@ -10,7 +10,7 @@
#include <linux/vt.h>
#include <linux/kbd_kern.h>
-#define MIN_NR_CONSOLES 2 /* must be at least 2 */
+#define MIN_NR_CONSOLES 1 /* must be at least 1 */
#define MAX_NR_CONSOLES 63 /* serial lines start at 64 */
#define MAX_NR_USER_CONSOLES 16 /* number of VCs per VT */
@@ -99,8 +99,6 @@
unsigned int vc_saved_y;
unsigned int vc_state; /* Escape sequence parser state */
unsigned int vc_npar, vc_par[NPAR]; /* Parameters of current escape sequence */
- unsigned char vc_ledstate;
- unsigned char vc_ledioctl;
struct kbd_struct kbd_table; /* VC keyboard state */
unsigned short vc_hi_font_mask; /* [#] Attribute set for upper 256 chars of font or 0 if not supported */
struct console_font_op vc_font; /* VC current font set */
@@ -244,6 +242,8 @@
struct vc_data *vc_cons[MAX_NR_USER_CONSOLES]; /* VT's VC pool */
struct vt_struct *next;
struct proc_dir_entry *procdir;
+ unsigned char vt_ledstate;
+ unsigned char vt_ledioctl;
};
extern struct vt_struct *vt_cons;
|