2 * This file defines the configuration for Etherboot.
4 * The build system splits this file into several individual header
5 * files of the form config/%.h, so that changing one option doesn't
6 * necessitate a rebuild of every single object. For this reason, it
7 * is important to maintain the strict formatting in this file.
13 * Console configuration
15 * These options specify the console types that Etherboot will use for
16 * interaction with the user.
20 #define CONSOLE_FIRMWARE /* Default BIOS console */
21 #undef CONSOLE_SERIAL /* Serial port */
22 #undef CONSOLE_DIRECT_VGA /* Direct access to VGA card */
23 #undef CONSOLE_BTEXT /* Who knows what this does? */
24 #undef CONSOLE_PC_KBD /* Direct access to PC keyboard */
30 * Serial port configuration
32 * These options affect the operation of the serial console. They
33 * take effect only if the serial console is included using the
34 * CONSOLE_SERIAL option.
38 #define COMCONSOLE 0x3f8 /* I/O port address */
40 /* Keep settings from a previous user of the serial port (e.g. lilo or
41 * LinuxBIOS), ignoring COMSPEED, COMDATA, COMPARITY and COMSTOP.
46 #define COMSPEED 115200 /* Baud rate */
47 #define COMDATA 8 /* Data bits */
48 #define COMPARITY 0 /* Parity: 0=None, 1=Odd, 2=Even */
49 #define COMSTOP 1 /* Stop bits */
56 * ISA probe address configuration
58 * You can override the list of addresses that will be probed by any
62 #undef ISA_PROBE_ADDRS /* e.g. 0x200, 0x300 */
63 #undef ISA_PROBE_ONLY /* Do not probe any other addresses */
73 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
74 #undef DOWNLOAD_PROTO_NFS /* Network File System */
75 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
76 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
77 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
78 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
79 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
80 #undef DOWNLOAD_PROTO_FSP /* FSP? */
86 * Name resolution modules
90 #define DNS_RESOLVER /* DNS resolver */
91 #undef NMB_RESOLVER /* NMB resolver */
99 * Etherboot supports various image formats. Select whichever ones
103 #undef IMAGE_NBI /* NBI image support */
104 #undef IMAGE_ELF64 /* ELF64 image support */
105 #undef IMAGE_ELF /* ELF image support */
106 #undef IMAGE_COFF /* COFF image support */
107 #undef IMAGE_FREEBSD /* FreeBSD kernel image support */
108 #define IMAGE_MULTIBOOT /* MultiBoot image support */
109 #undef IMAGE_AOUT /* a.out image support */
110 #undef IMAGE_WINCE /* WinCE image support */
111 #define IMAGE_PXE /* PXE image support */
112 #define IMAGE_SCRIPT /* gPXE script image support */
113 #define IMAGE_BZIMAGE /* Linux bzImage image support */
119 * Command-line commands to include
122 #define AUTOBOOT_CMD /* Automatic booting */
123 #define NVO_CMD /* Non-volatile option storage commands */
124 #define CONFIG_CMD /* Option configuration console */
125 #define IFMGMT_CMD /* Interface management commands */
126 #define ROUTE_CMD /* Routing table management commands */
127 #define IMAGE_CMD /* Image management commands */
128 #define DHCP_CMD /* DHCP management commands */
134 * Obscure configuration options
136 * You probably don't need to touch these.
140 #undef BUILD_SERIAL /* Include an automatic build serial
141 * number. Add "bs" to the list of
142 * make targets. For example:
143 * "make bin/rtl8139.dsk bs" */
144 #undef BUILD_ID /* Include a custom build ID string,
146 #undef NULL_TRAP /* Attempt to catch NULL function calls */
147 #undef DUMP_GDBSYM /* Dump GDB symbol table information */