* grub-core/kern/term.c (grub_term_normal_color),
(grub_term_highlight_color): Add back lost defaults.
This commit is contained in:
parent
73bf57e2c8
commit
99fcda8a7b
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/kern/term.c (grub_term_normal_color),
|
||||
(grub_term_highlight_color): Add back lost defaults.
|
||||
|
||||
2013-03-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Make elfload not use hooks. Opt for flags and iterators instead.
|
||||
|
|
|
@ -29,8 +29,8 @@ struct grub_term_output *grub_term_outputs;
|
|||
struct grub_term_input *grub_term_inputs;
|
||||
|
||||
/* Current color state. */
|
||||
grub_uint8_t grub_term_normal_color;
|
||||
grub_uint8_t grub_term_highlight_color;
|
||||
grub_uint8_t grub_term_normal_color = GRUB_TERM_DEFAULT_NORMAL_COLOR;
|
||||
grub_uint8_t grub_term_highlight_color = GRUB_TERM_DEFAULT_HIGHLIGHT_COLOR;
|
||||
|
||||
void (*grub_term_poll_usb) (void) = NULL;
|
||||
void (*grub_net_poll_cards_idle) (void) = NULL;
|
||||
|
|
Loading…
Reference in a new issue