2012-01-29 16:01:27 +00:00
|
|
|
|
/* console.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
|
2009-12-18 16:19:12 +00:00
|
|
|
|
* Copyright (C) 2003,2004,2005,2007,2008,2009 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>
|
2010-02-14 13:52:10 +00:00
|
|
|
|
#include <grub/time.h>
|
2010-05-06 19:11:59 +00:00
|
|
|
|
#include <grub/terminfo.h>
|
2010-05-07 13:44:43 +00:00
|
|
|
|
#include <grub/ieee1275/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
|
|
|
|
|
2012-01-29 16:01:27 +00:00
|
|
|
|
extern struct grub_terminfo_output_state grub_console_terminfo_output;
|
2005-11-09 06:07:54 +00:00
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
struct color
|
|
|
|
|
{
|
|
|
|
|
int red;
|
|
|
|
|
int green;
|
|
|
|
|
int blue;
|
|
|
|
|
};
|
|
|
|
|
|
2010-05-07 16:07:05 +00:00
|
|
|
|
/* Use serial colors as they are default on most firmwares and some firmwares
|
|
|
|
|
ignore set-color!. Additionally output may be redirected to serial. */
|
2009-12-18 16:19:12 +00:00
|
|
|
|
static struct color colors[] =
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2009-12-15 18:57:23 +00:00
|
|
|
|
// {R, G, B}
|
2010-05-07 16:07:05 +00:00
|
|
|
|
{0x00, 0x00, 0x00}, // 0 = black
|
|
|
|
|
{0xA8, 0x00, 0x00}, // 1 = red
|
2009-12-15 18:57:23 +00:00
|
|
|
|
{0x00, 0xA8, 0x00}, // 2 = green
|
2010-05-07 16:07:05 +00:00
|
|
|
|
{0xFE, 0xFE, 0x54}, // 3 = yellow
|
|
|
|
|
{0x00, 0x00, 0xA8}, // 4 = blue
|
2009-12-15 18:57:23 +00:00
|
|
|
|
{0xA8, 0x00, 0xA8}, // 5 = magenta
|
2010-05-07 16:07:05 +00:00
|
|
|
|
{0x00, 0xA8, 0xA8}, // 6 = cyan
|
2009-12-18 16:19:12 +00:00
|
|
|
|
{0xFE, 0xFE, 0xFE} // 7 = white
|
2004-03-28 21:52:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2010-08-25 20:32:17 +00:00
|
|
|
|
put (struct grub_term_output *term __attribute__ ((unused)), const int c)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2010-05-07 13:44:43 +00:00
|
|
|
|
char chr = c;
|
2010-02-14 13:51:06 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2010-08-25 20:32:17 +00:00
|
|
|
|
readkey (struct grub_term_input *term __attribute__ ((unused)))
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2010-05-05 16:42:33 +00:00
|
|
|
|
grub_uint8_t 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);
|
2010-02-20 10:23:13 +00:00
|
|
|
|
if (actual > 0)
|
2010-05-06 19:11:59 +00:00
|
|
|
|
return c;
|
|
|
|
|
return -1;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-01-13 19:43:48 +00:00
|
|
|
|
static void
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_console_dimensions (void)
|
2005-08-04 18:10:51 +00:00
|
|
|
|
{
|
|
|
|
|
grub_ieee1275_ihandle_t options;
|
2012-04-26 18:51:06 +00:00
|
|
|
|
grub_ieee1275_phandle_t stdout_phandle;
|
|
|
|
|
char val[1024];
|
|
|
|
|
|
|
|
|
|
/* Always assume 80x24 on serial since screen-#rows/screen-#columns is often
|
|
|
|
|
garbage for such devices. */
|
|
|
|
|
if (! grub_ieee1275_instance_to_package (stdout_ihandle,
|
|
|
|
|
&stdout_phandle)
|
|
|
|
|
&& ! grub_ieee1275_package_to_path (stdout_phandle,
|
|
|
|
|
val, sizeof (val) - 1, 0))
|
|
|
|
|
{
|
|
|
|
|
grub_ieee1275_ihandle_t stdout_options;
|
|
|
|
|
val[sizeof (val) - 1] = 0;
|
|
|
|
|
|
|
|
|
|
if (! grub_ieee1275_finddevice (val, &stdout_options)
|
|
|
|
|
&& ! grub_ieee1275_get_property (stdout_options, "device_type",
|
|
|
|
|
val, sizeof (val) - 1, 0))
|
|
|
|
|
{
|
|
|
|
|
val[sizeof (val) - 1] = 0;
|
|
|
|
|
if (grub_strcmp (val, "serial") == 0)
|
|
|
|
|
{
|
|
|
|
|
grub_console_terminfo_output.width = 80;
|
|
|
|
|
grub_console_terminfo_output.height = 24;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-04 18:10:51 +00:00
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (! grub_ieee1275_finddevice ("/options", &options)
|
|
|
|
|
&& options != (grub_ieee1275_ihandle_t) -1)
|
2005-08-04 18:10:51 +00:00
|
|
|
|
{
|
2012-04-26 18:51:06 +00:00
|
|
|
|
if (! grub_ieee1275_get_property (options, "screen-#columns",
|
|
|
|
|
val, sizeof (val) - 1, 0))
|
2005-11-09 06:07:54 +00:00
|
|
|
|
{
|
2012-04-26 18:51:06 +00:00
|
|
|
|
val[sizeof (val) - 1] = 0;
|
|
|
|
|
grub_console_terminfo_output.width
|
|
|
|
|
= (grub_uint8_t) grub_strtoul (val, 0, 10);
|
2005-11-09 06:07:54 +00:00
|
|
|
|
}
|
2012-04-26 18:51:06 +00:00
|
|
|
|
if (! grub_ieee1275_get_property (options, "screen-#rows",
|
|
|
|
|
val, sizeof (val) - 1, 0))
|
2005-11-09 06:07:54 +00:00
|
|
|
|
{
|
2012-04-26 18:51:06 +00:00
|
|
|
|
val[sizeof (val) - 1] = 0;
|
|
|
|
|
grub_console_terminfo_output.height
|
|
|
|
|
= (grub_uint8_t) grub_strtoul (val, 0, 10);
|
2005-08-04 18:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Use a small console by default. */
|
2012-01-29 16:01:27 +00:00
|
|
|
|
if (! grub_console_terminfo_output.width)
|
|
|
|
|
grub_console_terminfo_output.width = 80;
|
|
|
|
|
if (! grub_console_terminfo_output.height)
|
|
|
|
|
grub_console_terminfo_output.height = 24;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static void
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_console_setcursor (struct grub_term_output *term,
|
2010-05-07 00:30:44 +00:00
|
|
|
|
int on)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2010-09-08 17:09:07 +00:00
|
|
|
|
grub_terminfo_setcursor (term, on);
|
|
|
|
|
|
|
|
|
|
if (!grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_HAS_CURSORONOFF))
|
|
|
|
|
return;
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_console_init_input (struct grub_term_input *term)
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
{
|
|
|
|
|
grub_ssize_t actual;
|
|
|
|
|
|
|
|
|
|
if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdin", &stdin_ihandle,
|
|
|
|
|
sizeof stdin_ihandle, &actual)
|
|
|
|
|
|| actual != sizeof stdin_ihandle)
|
2009-12-24 22:53:05 +00:00
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "cannot find stdin");
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
|
2010-05-07 13:44:43 +00:00
|
|
|
|
return grub_terminfo_input_init (term);
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_console_init_output (struct grub_term_output *term)
|
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
|
|
|
|
|
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)
|
2009-12-24 22:53:05 +00:00
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "cannot find stdout");
|
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))
|
|
|
|
|
{
|
2009-12-18 16:19:12 +00:00
|
|
|
|
unsigned col;
|
|
|
|
|
for (col = 0; col < ARRAY_SIZE (colors); col++)
|
2008-01-24 08:21:43 +00:00
|
|
|
|
grub_ieee1275_set_color (stdout_ihandle, col, colors[col].red,
|
|
|
|
|
colors[col].green, colors[col].blue);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2010-05-07 13:44:43 +00:00
|
|
|
|
/* Set the right fg and bg colors. */
|
|
|
|
|
grub_terminfo_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
|
2008-01-24 08:21:43 +00:00
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_console_dimensions ();
|
2010-01-13 19:43:48 +00:00
|
|
|
|
|
2011-01-05 11:23:06 +00:00
|
|
|
|
grub_terminfo_output_init (term);
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-05-07 13:44:43 +00:00
|
|
|
|
|
2012-01-29 16:01:27 +00:00
|
|
|
|
struct grub_terminfo_input_state grub_console_terminfo_input =
|
2010-05-07 13:44:43 +00:00
|
|
|
|
{
|
|
|
|
|
.readkey = readkey
|
|
|
|
|
};
|
|
|
|
|
|
2012-01-29 16:01:27 +00:00
|
|
|
|
struct grub_terminfo_output_state grub_console_terminfo_output =
|
2010-05-07 13:44:43 +00:00
|
|
|
|
{
|
2010-09-20 14:27:33 +00:00
|
|
|
|
.put = put,
|
|
|
|
|
.width = 80,
|
|
|
|
|
.height = 24
|
2010-05-07 13:44:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
2012-01-29 16:01:27 +00:00
|
|
|
|
static struct grub_term_input grub_console_term_input =
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2012-01-29 16:01:27 +00:00
|
|
|
|
.name = "console",
|
|
|
|
|
.init = grub_console_init_input,
|
2010-05-07 13:44:43 +00:00
|
|
|
|
.getkey = grub_terminfo_getkey,
|
2012-01-29 16:01:27 +00:00
|
|
|
|
.data = &grub_console_terminfo_input
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
2012-01-29 16:01:27 +00:00
|
|
|
|
static struct grub_term_output grub_console_term_output =
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
{
|
2012-01-29 16:01:27 +00:00
|
|
|
|
.name = "console",
|
|
|
|
|
.init = grub_console_init_output,
|
2010-05-07 13:44:43 +00:00
|
|
|
|
.putchar = grub_terminfo_putchar,
|
|
|
|
|
.getxy = grub_terminfo_getxy,
|
2010-09-20 14:27:33 +00:00
|
|
|
|
.getwh = grub_terminfo_getwh,
|
2010-05-07 13:44:43 +00:00
|
|
|
|
.gotoxy = grub_terminfo_gotoxy,
|
|
|
|
|
.cls = grub_terminfo_cls,
|
|
|
|
|
.setcolorstate = grub_terminfo_setcolorstate,
|
2012-01-29 16:01:27 +00:00
|
|
|
|
.setcursor = grub_console_setcursor,
|
2010-05-07 13:44:43 +00:00
|
|
|
|
.flags = GRUB_TERM_CODE_TYPE_ASCII,
|
2012-01-29 16:01:27 +00:00
|
|
|
|
.data = &grub_console_terminfo_output,
|
2004-03-28 21:52:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2010-05-07 13:44:43 +00:00
|
|
|
|
grub_console_init_early (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_term_register_input ("console", &grub_console_term_input);
|
|
|
|
|
grub_term_register_output ("console", &grub_console_term_output);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
2005-03-26 17:34:50 +00:00
|
|
|
|
|
2010-05-07 13:44:43 +00:00
|
|
|
|
void
|
|
|
|
|
grub_console_init_lately (void)
|
|
|
|
|
{
|
|
|
|
|
const char *type;
|
|
|
|
|
|
|
|
|
|
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_ANSI))
|
|
|
|
|
type = "dumb";
|
2012-09-18 09:52:19 +00:00
|
|
|
|
else if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN))
|
|
|
|
|
type = "ieee1275-nocursor";
|
2010-05-07 13:44:43 +00:00
|
|
|
|
else
|
|
|
|
|
type = "ieee1275";
|
|
|
|
|
grub_terminfo_init ();
|
2012-01-29 16:01:27 +00:00
|
|
|
|
grub_terminfo_output_register (&grub_console_term_output, type);
|
2010-05-07 13:44:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-03-26 17:34:50 +00:00
|
|
|
|
void
|
|
|
|
|
grub_console_fini (void)
|
|
|
|
|
{
|
|
|
|
|
}
|