From c8144f96ab8b936d9058c01eb39cb56aa89224ff Mon Sep 17 00:00:00 2001 From: House Chou Date: Tue, 30 Jun 2015 10:10:46 +0800 Subject: libpayload: Swap the macros of VT100_CURSOR_ON and VT100_CURSOR_OFF The macros of VT100_CURSOR_ON and VT100_CURSOR_OFF are exchanged Change-Id: Ifdae186ae0503a915d695a9e3fd24bdf65d8428a Signed-off-by: House Chou Reviewed-on: http://review.coreboot.org/10718 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Patrick Georgi --- payloads/libpayload/drivers/serial.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/payloads/libpayload/drivers/serial.c b/payloads/libpayload/drivers/serial.c index 6ecc5d2100..25027755d7 100644 --- a/payloads/libpayload/drivers/serial.c +++ b/payloads/libpayload/drivers/serial.c @@ -171,8 +171,8 @@ int serial_getchar(void) #define VT100_SREVERSE "\e[7m" #define VT100_EREVERSE "\e[m" #define VT100_CURSOR_ADDR "\e[%d;%dH" -#define VT100_CURSOR_ON "\e[?25l" -#define VT100_CURSOR_OFF "\e[?25h" +#define VT100_CURSOR_ON "\e[?25h" +#define VT100_CURSOR_OFF "\e[?25l" /* The following smacs/rmacs are actually for xterm; a real vt100 has enacs=\E(B\E)0, smacs=^N, rmacs=^O. */ #define VT100_SMACS "\e(0" -- cgit v1.2.3