grub_console_init_output (struct grub_term_output *term)
{
grub_ssize_t actual;
+ unsigned int col;
/* The latest PowerMacs don't actually initialize the screen for us, so we
* use this trick to re-open the output device (but we avoid doing this on
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "cannot find stdout");
/* Initialize colors. */
- if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CANNOT_SET_COLORS))
- {
- unsigned col;
- for (col = 0; col < ARRAY_SIZE (colors); col++)
- grub_ieee1275_set_color (stdout_ihandle, col, colors[col].red,
- colors[col].green, colors[col].blue);
+ for (col = 0; col < ARRAY_SIZE (colors); col++)
+ grub_ieee1275_set_color (stdout_ihandle, col, colors[col].red,
+ colors[col].green, colors[col].blue);
- /* Set the right fg and bg colors. */
- grub_terminfo_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
- }
+ /* Set the right fg and bg colors. */
+ grub_terminfo_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
grub_console_dimensions ();
grub_memset (&framebuffer, 0, sizeof(framebuffer));
- if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CANNOT_SET_COLORS)
- && !grub_ieee1275_get_integer_property (grub_ieee1275_chosen,
- "stdout", &stdout_ihandle,
- sizeof (stdout_ihandle), &actual)
+ if (!grub_ieee1275_get_integer_property (grub_ieee1275_chosen,
+ "stdout", &stdout_ihandle,
+ sizeof (stdout_ihandle), &actual)
&& actual == sizeof (stdout_ihandle))
have_setcolors = 1;
/* OLPC / XO firmware hangs when accessing USB devices. */
GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY,
- /* Open Hack'Ware stops when trying to set colors */
- GRUB_IEEE1275_FLAG_CANNOT_SET_COLORS,
-
/* Open Hack'Ware stops when grub_ieee1275_interpret is used. */
GRUB_IEEE1275_FLAG_CANNOT_INTERPRET,