+2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
+
+ * include/grub/term.h (grub_term_register_input,
+ grub_term_register_output): Check return of terminal init()
+ routines, and abort if errors are raised.
+
+ * commands/terminal.c: Update copyright year.
+
2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
* commands/terminal.c (grub_cmd_terminal_input)
/*
* GRUB -- GRand Unified Bootloader
- * Copyright (C) 2009 Free Software Foundation, Inc.
+ * Copyright (C) 2009,2010 Free Software Foundation, Inc.
*
* GRUB is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
else
{
/* If this is the first terminal, enable automatically. */
- if (term->init)
- term->init ();
- grub_list_push (GRUB_AS_LIST_P (&grub_term_inputs), GRUB_AS_LIST (term));
+ if (! term->init || term->init () == GRUB_ERR_NONE)
+ grub_list_push (GRUB_AS_LIST_P (&grub_term_inputs), GRUB_AS_LIST (term));
}
}
else
{
/* If this is the first terminal, enable automatically. */
- if (term->init)
- term->init ();
- grub_list_push (GRUB_AS_LIST_P (&grub_term_outputs),
- GRUB_AS_LIST (term));
+ if (! term->init || term->init () == GRUB_ERR_NONE)
+ grub_list_push (GRUB_AS_LIST_P (&grub_term_outputs),
+ GRUB_AS_LIST (term));
}
}