You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

console.h 606B

12345678910111213141516171819202122232425
  1. #ifndef CONFIG_CONSOLE_H
  2. #define CONFIG_CONSOLE_H
  3. /** @file
  4. *
  5. * Console configuration
  6. *
  7. * These options specify the console types that Etherboot will use for
  8. * interaction with the user.
  9. *
  10. */
  11. FILE_LICENCE ( GPL2_OR_LATER );
  12. #include <config/defaults.h>
  13. //#define CONSOLE_PCBIOS /* Default BIOS console */
  14. //#define CONSOLE_SERIAL /* Serial port */
  15. //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
  16. //#define CONSOLE_BTEXT /* Who knows what this does? */
  17. //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
  18. #include <config/local/console.h>
  19. #endif /* CONFIG_CONSOLE_H */