1 #ifndef CONFIG_CONSOLE_H
2 #define CONFIG_CONSOLE_H
6 * Console configuration
8 * These options specify the console types that iPXE will use for
9 * interaction with the user.
13 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL
);
15 #include <config/defaults.h>
18 * Default console types
20 * These are all enabled by default for the appropriate platforms.
21 * You may disable them if needed.
25 //#undef CONSOLE_PCBIOS /* Default BIOS console */
26 //#undef CONSOLE_EFI /* Default EFI console */
27 //#undef CONSOLE_LINUX /* Default Linux console */
30 * Additional console types
32 * These are not enabled by default, but may be useful in your
37 //#define CONSOLE_SERIAL /* Serial port console */
38 //#define CONSOLE_FRAMEBUFFER /* Graphical framebuffer console */
39 //#define CONSOLE_SYSLOG /* Syslog console */
40 //#define CONSOLE_SYSLOGS /* Encrypted syslog console */
41 //#define CONSOLE_VMWARE /* VMware logfile console */
42 //#define CONSOLE_DEBUGCON /* Bochs/QEMU/KVM debug port console */
43 //#define CONSOLE_INT13 /* INT13 disk log console */
46 * Very obscure console types
48 * You almost certainly do not need to enable these.
52 //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
53 //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
55 /* Keyboard map (available maps in hci/keymap/) */
56 #define KEYBOARD_MAP us
58 /* Control which syslog() messages are generated.
60 * Note that this is not related in any way to CONSOLE_SYSLOG.
62 #define LOG_LEVEL LOG_NONE
64 #include <config/named.h>
65 #include NAMED_CONFIG(console.h)
66 #include <config/local/console.h>
67 #include LOCAL_NAMED_CONFIG(console.h)
69 #endif /* CONFIG_CONSOLE_H */