Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

console.h 538B

123456789101112131415161718192021
  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. #include <config/defaults.h>
  12. //#define CONSOLE_PCBIOS /* Default BIOS console */
  13. //#define CONSOLE_SERIAL /* Serial port */
  14. //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
  15. //#define CONSOLE_BTEXT /* Who knows what this does? */
  16. //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
  17. #endif /* CONFIG_CONSOLE_H */