f74b50e380
Signed-off-by: Peter Jones <pjones@redhat.com>
83 lines
2.9 KiB
Diff
83 lines
2.9 KiB
Diff
From c5e950e3eceeb286dbdd4c5c2f3bc53979ad1a1d Mon Sep 17 00:00:00 2001
|
|
From: Andrey Borzenkov <arvidjaar@gmail.com>
|
|
Date: Mon, 8 Apr 2013 19:51:33 +0200
|
|
Subject: [PATCH 273/482] * grub-core/term/i386/pc/console.c: Fix cursor
|
|
moving algorithm.
|
|
|
|
---
|
|
ChangeLog | 4 ++++
|
|
grub-core/term/i386/pc/console.c | 24 +++++++++---------------
|
|
2 files changed, 13 insertions(+), 15 deletions(-)
|
|
|
|
diff --git a/ChangeLog b/ChangeLog
|
|
index 3a241c0..9e08bea 100644
|
|
--- a/ChangeLog
|
|
+++ b/ChangeLog
|
|
@@ -1,3 +1,7 @@
|
|
+2013-04-08 Andrey Borzenkov <arvidjaar@gmail.com>
|
|
+
|
|
+ * grub-core/term/i386/pc/console.c: Fix cursor moving algorithm.
|
|
+
|
|
2013-04-08 Bryan Hundven <bryanhundven@gmail.com>
|
|
|
|
* docs/grub-dev.texi: Move @itemize after @subsection to satisfy
|
|
diff --git a/grub-core/term/i386/pc/console.c b/grub-core/term/i386/pc/console.c
|
|
index ee6650b..358611a 100644
|
|
--- a/grub-core/term/i386/pc/console.c
|
|
+++ b/grub-core/term/i386/pc/console.c
|
|
@@ -86,13 +86,9 @@ grub_console_gotoxy (struct grub_term_output *term __attribute__ ((unused)),
|
|
* Put the character C on the console. Because GRUB wants to write a
|
|
* character with an attribute, this implementation is a bit tricky.
|
|
* If C is a control character (CR, LF, BEL, BS), use INT 10, AH = 0Eh
|
|
- * (TELETYPE OUTPUT). Otherwise, save the original position, put a space,
|
|
- * save the current position, restore the original position, write the
|
|
- * character and the attribute, and restore the current position.
|
|
- *
|
|
- * The reason why this is so complicated is that there is no easy way to
|
|
- * get the height of the screen, and the TELETYPE OUTPUT BIOS call doesn't
|
|
- * support setting a background attribute.
|
|
+ * (TELETYPE OUTPUT). Otherwise, use INT 10, AH = 9 to write character
|
|
+ * with attributes and advance cursor. If we are on the last column,
|
|
+ * let BIOS to wrap line correctly.
|
|
*/
|
|
static void
|
|
grub_console_putchar_real (grub_uint8_t c)
|
|
@@ -112,19 +108,18 @@ grub_console_putchar_real (grub_uint8_t c)
|
|
/* get the current position */
|
|
pos = grub_console_getxy (NULL);
|
|
|
|
+ /* write the character with the attribute */
|
|
+ int10_9 (c, 1);
|
|
+
|
|
/* check the column with the width */
|
|
if ((pos & 0xff00) >= (79 << 8))
|
|
{
|
|
grub_console_putchar_real (0x0d);
|
|
grub_console_putchar_real (0x0a);
|
|
- /* get the current position */
|
|
- pos = grub_console_getxy (NULL);
|
|
}
|
|
+ else
|
|
+ grub_console_gotoxy (NULL, ((pos & 0xff00) >> 8) + 1, (pos & 0xff));
|
|
|
|
- /* write the character with the attribute */
|
|
- int10_9 (c, 1);
|
|
-
|
|
- grub_console_gotoxy (NULL, ((pos & 0xff00) >> 8) + 1, (pos & 0xff));
|
|
}
|
|
|
|
static void
|
|
@@ -255,8 +250,7 @@ grub_console_getkeystatus (struct grub_term_input *term __attribute__ ((unused))
|
|
static grub_uint16_t
|
|
grub_console_getwh (struct grub_term_output *term __attribute__ ((unused)))
|
|
{
|
|
- /* Due to current cursor moving algorithm we lost the last column. */
|
|
- return (79 << 8) | 25;
|
|
+ return (80 << 8) | 25;
|
|
}
|
|
|
|
static void
|
|
--
|
|
1.8.2.1
|
|
|