選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

console.h 571B

1234567891011121314151617181920212223
  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. #endif /* CONFIG_CONSOLE_H */