diff options
author | Matthew Garrett <mjg@redhat.com> | 2009-11-13 15:14:11 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-11-13 18:54:27 -0500 |
commit | f6c06b6807ff9281295989ebad72523865325a4f (patch) | |
tree | 152182be618e67caa89f46ef05b14ad8c075540e /include | |
parent | d9b263528e01bfbaf716b51f38606b3dfe5ac1e9 (diff) |
vc: Add support for hiding the cursor when creating VTs
Add support for setting a global default for whether or not a visible
cursor should be enabled when creating VCs. The default will be to do so,
unless overridden by the user at boot time or by a driver.
Signed-off-by: Matthew Garrett <mjg@redhat.com>
LKML-Reference: <1258143251-5818-1-git-send-email-mjg@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/vt_kern.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/vt_kern.h b/include/linux/vt_kern.h index c0c4e1103a73..7f56db4a79f0 100644 --- a/include/linux/vt_kern.h +++ b/include/linux/vt_kern.h | |||
@@ -110,6 +110,7 @@ extern char con_buf[CON_BUF_SIZE]; | |||
110 | extern struct mutex con_buf_mtx; | 110 | extern struct mutex con_buf_mtx; |
111 | extern char vt_dont_switch; | 111 | extern char vt_dont_switch; |
112 | extern int default_utf8; | 112 | extern int default_utf8; |
113 | extern int global_cursor_default; | ||
113 | 114 | ||
114 | struct vt_spawn_console { | 115 | struct vt_spawn_console { |
115 | spinlock_t lock; | 116 | spinlock_t lock; |
@@ -130,4 +131,6 @@ struct vt_notifier_param { | |||
130 | extern int register_vt_notifier(struct notifier_block *nb); | 131 | extern int register_vt_notifier(struct notifier_block *nb); |
131 | extern int unregister_vt_notifier(struct notifier_block *nb); | 132 | extern int unregister_vt_notifier(struct notifier_block *nb); |
132 | 133 | ||
134 | extern void hide_boot_cursor(bool hide); | ||
135 | |||
133 | #endif /* _VT_KERN_H */ | 136 | #endif /* _VT_KERN_H */ |