diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-12-07 16:49:15 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-07 16:49:15 -0800 |
commit | 040441da7d90285e63bd920f4f416a0659e095be (patch) | |
tree | f75e930b6b2183f05f2f87a2bd4426e56ddeffd7 /com32/include | |
parent | c64383a22c3d8ae511153b50baa065d79c7ff855 (diff) | |
download | syslinux-040441da7d90285e63bd920f4f416a0659e095be.tar.gz syslinux-040441da7d90285e63bd920f4f416a0659e095be.tar.xz syslinux-040441da7d90285e63bd920f4f416a0659e095be.zip |
vesacon: don't display the cursor when doing a quiet boot
Don't display the cursor on the graphical screen while doing a quiet
boot. When doing a quiet boot we will probably show the graphical
screen for a fair bit of time; as a result, we really don't want a
completely bogus cursor blob on the bottom of the screen.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/include')
-rw-r--r-- | com32/include/syslinux/vesacon.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/com32/include/syslinux/vesacon.h b/com32/include/syslinux/vesacon.h index 11d72f3a..b99e649c 100644 --- a/com32/include/syslinux/vesacon.h +++ b/com32/include/syslinux/vesacon.h @@ -28,9 +28,12 @@ #ifndef _SYSLINUX_VESACON_H #define _SYSLINUX_VESACON_H +#include <stdbool.h> + int vesacon_default_background(void); void vesacon_set_resolution(int, int); int vesacon_load_background(const char *); int vesacon_set_background(unsigned int); +void vesacon_cursor_enable(bool); #endif /* _SYSLINUX_VESACON_H */ |