2004-04-04 13:46:03 +00:00
|
|
|
|
/* ofconsole.c -- Open Firmware console for GRUB. */
|
2004-03-28 21:52:02 +00:00
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-01-21 14:22:38 +00:00
|
|
|
|
* Copyright (C) 2003,2004,2005,2007,2008 Free Software Foundation, Inc.
|
2004-03-28 21:52:02 +00:00
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2004-03-28 21:52:02 +00:00
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2004-03-28 21:52:02 +00:00
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2004-03-28 21:52:02 +00:00
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2004-03-28 21:52:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#include <grub/term.h>
|
|
|
|
|
#include <grub/types.h>
|
|
|
|
|
#include <grub/misc.h>
|
2005-08-09 03:25:40 +00:00
|
|
|
|
#include <grub/mm.h>
|
2005-08-09 03:15:35 +00:00
|
|
|
|
#include <grub/machine/console.h>
|
2005-08-03 22:53:51 +00:00
|
|
|
|
#include <grub/ieee1275/ieee1275.h>
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_ieee1275_ihandle_t stdout_ihandle;
|
|
|
|
|
static grub_ieee1275_ihandle_t stdin_ihandle;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
static grub_uint8_t grub_ofconsole_width;
|
|
|
|
|
static grub_uint8_t grub_ofconsole_height;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static int grub_curr_x;
|
|
|
|
|
static int grub_curr_y;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2008-07-15 13:27:02 +00:00
|
|
|
|
#ifndef __i386__
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static int grub_keybuf;
|
|
|
|
|
static int grub_buflen;
|
2008-07-15 13:27:02 +00:00
|
|
|
|
#endif
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
struct color
|
|
|
|
|
{
|
|
|
|
|
int red;
|
|
|
|
|
int green;
|
|
|
|
|
int blue;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MAX 0xff
|
|
|
|
|
static struct color colors[8] =
|
|
|
|
|
{
|
|
|
|
|
{ 0, 0, 0},
|
|
|
|
|
{ MAX, 0, 0},
|
|
|
|
|
{ 0, MAX, 0},
|
|
|
|
|
{ MAX, MAX, 0},
|
|
|
|
|
{ 0, 0, MAX},
|
|
|
|
|
{ MAX, 0, MAX},
|
|
|
|
|
{ 0, MAX, MAX},
|
|
|
|
|
{ MAX, MAX, MAX}
|
|
|
|
|
};
|
|
|
|
|
|
2008-06-17 15:27:14 +00:00
|
|
|
|
static grub_uint8_t grub_ofconsole_normal_color = 0x7;
|
|
|
|
|
static grub_uint8_t grub_ofconsole_highlight_color = 0x70;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
/* Write control characters to the console. */
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_writeesc (const char *str)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2008-07-02 07:38:46 +00:00
|
|
|
|
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_ANSI))
|
|
|
|
|
return;
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
while (*str)
|
|
|
|
|
{
|
|
|
|
|
char chr = *(str++);
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_putchar (grub_uint32_t c)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char chr = c;
|
|
|
|
|
if (c == '\n')
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_curr_y++;
|
|
|
|
|
grub_curr_x = 0;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2005-11-09 06:07:54 +00:00
|
|
|
|
{
|
|
|
|
|
grub_curr_x++;
|
|
|
|
|
if (grub_curr_x > grub_ofconsole_width)
|
2008-04-25 19:41:51 +00:00
|
|
|
|
{
|
|
|
|
|
grub_putcode ('\n');
|
|
|
|
|
grub_curr_x++;
|
|
|
|
|
}
|
2005-11-09 06:07:54 +00:00
|
|
|
|
}
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-08-31 01:02:05 +00:00
|
|
|
|
static grub_ssize_t
|
2005-08-31 01:26:34 +00:00
|
|
|
|
grub_ofconsole_getcharwidth (grub_uint32_t c __attribute__((unused)))
|
2005-08-31 01:02:05 +00:00
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_setcolorstate (grub_term_color_state state)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char setcol[20];
|
|
|
|
|
int fg;
|
|
|
|
|
int bg;
|
|
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_STANDARD:
|
|
|
|
|
case GRUB_TERM_COLOR_NORMAL:
|
2008-06-17 15:27:14 +00:00
|
|
|
|
fg = grub_ofconsole_normal_color & 0x0f;
|
|
|
|
|
bg = grub_ofconsole_normal_color >> 4;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
break;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_HIGHLIGHT:
|
2008-06-17 15:27:14 +00:00
|
|
|
|
fg = grub_ofconsole_highlight_color & 0x0f;
|
|
|
|
|
bg = grub_ofconsole_highlight_color >> 4;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_sprintf (setcol, "\e[3%dm\e[4%dm", fg, bg);
|
|
|
|
|
grub_ofconsole_writeesc (setcol);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_setcolor (grub_uint8_t normal_color,
|
|
|
|
|
grub_uint8_t highlight_color)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2008-06-17 15:27:14 +00:00
|
|
|
|
grub_ofconsole_normal_color = normal_color;
|
|
|
|
|
grub_ofconsole_highlight_color = highlight_color;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-12-25 11:10:47 +00:00
|
|
|
|
static void
|
|
|
|
|
grub_ofconsole_getcolor (grub_uint8_t *normal_color, grub_uint8_t *highlight_color)
|
|
|
|
|
{
|
2008-06-17 15:27:14 +00:00
|
|
|
|
*normal_color = grub_ofconsole_normal_color;
|
|
|
|
|
*highlight_color = grub_ofconsole_highlight_color;
|
2007-12-25 11:10:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-07-15 13:27:02 +00:00
|
|
|
|
#ifndef __i386__
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_readkey (int *key)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char c;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
grub_ssize_t actual = 0;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-11-03 03:21:14 +00:00
|
|
|
|
if (actual > 0 && c == '\e')
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
|
2004-11-03 03:21:14 +00:00
|
|
|
|
if (actual <= 0)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
*key = '\e';
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c != 91)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
|
2004-11-03 03:21:14 +00:00
|
|
|
|
if (actual <= 0)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case 65:
|
|
|
|
|
/* Up: Ctrl-p. */
|
|
|
|
|
c = 16;
|
|
|
|
|
break;
|
|
|
|
|
case 66:
|
|
|
|
|
/* Down: Ctrl-n. */
|
|
|
|
|
c = 14;
|
|
|
|
|
break;
|
|
|
|
|
case 67:
|
|
|
|
|
/* Right: Ctrl-f. */
|
|
|
|
|
c = 6;
|
|
|
|
|
break;
|
|
|
|
|
case 68:
|
|
|
|
|
/* Left: Ctrl-b. */
|
|
|
|
|
c = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*key = c;
|
2004-11-03 03:21:14 +00:00
|
|
|
|
return actual > 0;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_checkkey (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
int key;
|
|
|
|
|
int read;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_buflen)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 1;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
read = grub_ofconsole_readkey (&key);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
if (read)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_keybuf = key;
|
|
|
|
|
grub_buflen = 1;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-04 04:50:14 +00:00
|
|
|
|
return -1;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_getkey (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
int key;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_buflen)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_buflen =0;
|
|
|
|
|
return grub_keybuf;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
while (! grub_ofconsole_readkey (&key));
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
return key;
|
|
|
|
|
}
|
2008-07-15 13:27:02 +00:00
|
|
|
|
#endif
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ofconsole_getxy (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return ((grub_curr_x - 1) << 8) | grub_curr_y;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-08-04 18:10:51 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ofconsole_getwh (void)
|
|
|
|
|
{
|
|
|
|
|
grub_ieee1275_ihandle_t options;
|
|
|
|
|
char *val;
|
|
|
|
|
grub_ssize_t lval;
|
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (grub_ofconsole_width && grub_ofconsole_height)
|
|
|
|
|
return (grub_ofconsole_width << 8) | grub_ofconsole_height;
|
|
|
|
|
|
|
|
|
|
if (! grub_ieee1275_finddevice ("/options", &options)
|
|
|
|
|
&& options != (grub_ieee1275_ihandle_t) -1)
|
2005-08-04 18:10:51 +00:00
|
|
|
|
{
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (! grub_ieee1275_get_property_length (options, "screen-#columns",
|
|
|
|
|
&lval) && lval != -1)
|
|
|
|
|
{
|
|
|
|
|
val = grub_malloc (lval);
|
|
|
|
|
if (val)
|
|
|
|
|
{
|
|
|
|
|
if (! grub_ieee1275_get_property (options, "screen-#columns",
|
|
|
|
|
val, lval, 0))
|
|
|
|
|
grub_ofconsole_width = (grub_uint8_t) grub_strtoul (val, 0, 10);
|
|
|
|
|
|
|
|
|
|
grub_free (val);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (! grub_ieee1275_get_property_length (options, "screen-#rows",
|
|
|
|
|
&lval) && lval != -1)
|
|
|
|
|
{
|
|
|
|
|
val = grub_malloc (lval);
|
|
|
|
|
if (val)
|
|
|
|
|
{
|
|
|
|
|
if (! grub_ieee1275_get_property (options, "screen-#rows",
|
|
|
|
|
val, lval, 0))
|
|
|
|
|
grub_ofconsole_height = (grub_uint8_t) grub_strtoul (val, 0, 10);
|
|
|
|
|
|
|
|
|
|
grub_free (val);
|
|
|
|
|
}
|
2005-08-04 18:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Use a small console by default. */
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (! grub_ofconsole_width)
|
|
|
|
|
grub_ofconsole_width = 80;
|
|
|
|
|
if (! grub_ofconsole_height)
|
|
|
|
|
grub_ofconsole_height = 24;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
return (grub_ofconsole_width << 8) | grub_ofconsole_height;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_gotoxy (grub_uint8_t x, grub_uint8_t y)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char s[11]; /* 5 + 3 + 3. */
|
|
|
|
|
|
2008-07-02 07:38:46 +00:00
|
|
|
|
if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_ANSI))
|
|
|
|
|
{
|
|
|
|
|
grub_curr_x = x;
|
|
|
|
|
grub_curr_y = y;
|
|
|
|
|
|
|
|
|
|
grub_sprintf (s, "\e[%d;%dH", y + 1, x + 1);
|
|
|
|
|
grub_ofconsole_writeesc (s);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ((y == grub_curr_y) && (x == grub_curr_x - 1))
|
|
|
|
|
{
|
|
|
|
|
char chr;
|
|
|
|
|
|
|
|
|
|
chr = '\b';
|
|
|
|
|
grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
grub_curr_x = x;
|
|
|
|
|
grub_curr_y = y;
|
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_cls (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2005-11-10 01:57:52 +00:00
|
|
|
|
/* Clear the screen. Using serial console, screen(1) only recognizes the
|
|
|
|
|
* ANSI escape sequence. Using video console, Apple Open Firmware (version
|
|
|
|
|
* 3.1.1) only recognizes the literal ^L. So use both. */
|
|
|
|
|
grub_ofconsole_writeesc ("\e[2J");
|
2004-10-09 02:37:18 +00:00
|
|
|
|
grub_gotoxy (0, 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-05-31 18:09:14 +00:00
|
|
|
|
grub_ofconsole_setcursor (int on)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2008-05-31 18:09:14 +00:00
|
|
|
|
/* Understood by the Open Firmware flavour in OLPC. */
|
|
|
|
|
if (on)
|
|
|
|
|
grub_ieee1275_interpret ("cursor-on", 0);
|
|
|
|
|
else
|
|
|
|
|
grub_ieee1275_interpret ("cursor-off", 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_refresh (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
/* Do nothing, the current console state is ok. */
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ofconsole_init (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2005-08-04 18:10:51 +00:00
|
|
|
|
grub_ssize_t actual;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
int col;
|
|
|
|
|
|
2006-10-01 06:45:53 +00:00
|
|
|
|
/* The latest PowerMacs don't actually initialize the screen for us, so we
|
2007-07-22 09:05:11 +00:00
|
|
|
|
* use this trick to re-open the output device (but we avoid doing this on
|
|
|
|
|
* platforms where it's known to be broken). */
|
|
|
|
|
if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_BROKEN_OUTPUT))
|
|
|
|
|
grub_ieee1275_interpret ("output-device output", 0);
|
2006-10-01 06:45:53 +00:00
|
|
|
|
|
2008-01-19 22:31:04 +00:00
|
|
|
|
if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdout", &stdout_ihandle,
|
|
|
|
|
sizeof stdout_ihandle, &actual)
|
|
|
|
|
|| actual != sizeof stdout_ihandle)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "Cannot find stdout");
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2008-01-19 22:31:04 +00:00
|
|
|
|
if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdin", &stdin_ihandle,
|
|
|
|
|
sizeof stdin_ihandle, &actual)
|
|
|
|
|
|| actual != sizeof stdin_ihandle)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "Cannot find stdin");
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
/* Initialize colors. */
|
2008-01-24 08:21:43 +00:00
|
|
|
|
if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CANNOT_SET_COLORS))
|
|
|
|
|
{
|
|
|
|
|
for (col = 0; col < 7; col++)
|
|
|
|
|
grub_ieee1275_set_color (stdout_ihandle, col, colors[col].red,
|
|
|
|
|
colors[col].green, colors[col].blue);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2008-01-24 08:21:43 +00:00
|
|
|
|
/* Set the right fg and bg colors. */
|
|
|
|
|
grub_ofconsole_setcolorstate (GRUB_TERM_COLOR_NORMAL);
|
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ofconsole_fini (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static struct grub_term grub_ofconsole_term =
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
.name = "ofconsole",
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.init = grub_ofconsole_init,
|
|
|
|
|
.fini = grub_ofconsole_fini,
|
|
|
|
|
.putchar = grub_ofconsole_putchar,
|
2005-08-31 01:02:05 +00:00
|
|
|
|
.getcharwidth = grub_ofconsole_getcharwidth,
|
2008-01-23 11:57:22 +00:00
|
|
|
|
#ifdef __i386__
|
|
|
|
|
.checkkey = grub_console_checkkey,
|
|
|
|
|
.getkey = grub_console_getkey,
|
|
|
|
|
#else
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.checkkey = grub_ofconsole_checkkey,
|
|
|
|
|
.getkey = grub_ofconsole_getkey,
|
2008-01-23 11:57:22 +00:00
|
|
|
|
#endif
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.getxy = grub_ofconsole_getxy,
|
2005-08-04 18:10:51 +00:00
|
|
|
|
.getwh = grub_ofconsole_getwh,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.gotoxy = grub_ofconsole_gotoxy,
|
|
|
|
|
.cls = grub_ofconsole_cls,
|
|
|
|
|
.setcolorstate = grub_ofconsole_setcolorstate,
|
|
|
|
|
.setcolor = grub_ofconsole_setcolor,
|
2007-12-25 11:10:47 +00:00
|
|
|
|
.getcolor = grub_ofconsole_getcolor,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.setcursor = grub_ofconsole_setcursor,
|
|
|
|
|
.refresh = grub_ofconsole_refresh,
|
2004-03-28 21:52:02 +00:00
|
|
|
|
.flags = 0,
|
|
|
|
|
.next = 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_console_init (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_term_register (&grub_ofconsole_term);
|
|
|
|
|
grub_term_set_current (&grub_ofconsole_term);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
2005-03-26 17:34:50 +00:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
grub_console_fini (void)
|
|
|
|
|
{
|
|
|
|
|
grub_term_unregister (&grub_ofconsole_term);
|
|
|
|
|
}
|