Adding debian version 3.70~pre8+dfsg-1.
[syslinux-debian/hramrach.git] / gpxe / src / config.h
blob9a447ad588313dcbe76aeb3cd9a9228408848005
1 /*
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.
9 */
11 /* @BEGIN general.h
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 */
26 /* @END general.h */
28 /* @BEGIN serial.h
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.
43 #undef COMPRESERVE
45 #ifndef COMPRESERVE
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 */
50 #endif
52 /* @END serial.h */
54 /* @BEGIN general.h
56 * Timer configuration
59 #define TIMER_BIOS /* 18Hz BIOS timer */
60 #define TIMER_RDTSC /* CPU TimeStamp Counter timer */
62 /* @END general.h */
64 /* @BEGIN isa.h
66 * ISA probe address configuration
68 * You can override the list of addresses that will be probed by any
69 * ISA drivers.
72 #undef ISA_PROBE_ADDRS /* e.g. 0x200, 0x300 */
73 #undef ISA_PROBE_ONLY /* Do not probe any other addresses */
75 /* @END isa.h */
77 /* @BEGIN general.h
79 * Network protocols
83 #define NET_PROTO_IPV4 /* IPv4 protocol */
85 /* @END general.h */
87 /* @BEGIN general.h
89 * Download protocols
93 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
94 #undef DOWNLOAD_PROTO_NFS /* Network File System */
95 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
96 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
97 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
98 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
99 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
100 #undef DOWNLOAD_PROTO_FSP /* FSP? */
102 /* @END general.h */
104 /* @BEGIN general.h
106 * Name resolution modules
110 #define DNS_RESOLVER /* DNS resolver */
111 #undef NMB_RESOLVER /* NMB resolver */
113 /* @END general.h */
115 /* @BEGIN general.h
117 * Image types
119 * Etherboot supports various image formats. Select whichever ones
120 * you want to use.
123 #undef IMAGE_NBI /* NBI image support */
124 #undef IMAGE_ELF64 /* ELF64 image support */
125 #undef IMAGE_ELF /* ELF image support */
126 #undef IMAGE_FREEBSD /* FreeBSD kernel image support */
127 #define IMAGE_MULTIBOOT /* MultiBoot image support */
128 #undef IMAGE_AOUT /* a.out image support */
129 #undef IMAGE_WINCE /* WinCE image support */
130 #define IMAGE_PXE /* PXE image support */
131 #define IMAGE_SCRIPT /* gPXE script image support */
132 #define IMAGE_BZIMAGE /* Linux bzImage image support */
134 /* @END general.h */
136 /* @BEGIN general.h
138 * Command-line commands to include
141 #define AUTOBOOT_CMD /* Automatic booting */
142 #define NVO_CMD /* Non-volatile option storage commands */
143 #define CONFIG_CMD /* Option configuration console */
144 #define IFMGMT_CMD /* Interface management commands */
145 #define ROUTE_CMD /* Routing table management commands */
146 #define IMAGE_CMD /* Image management commands */
147 #define DHCP_CMD /* DHCP management commands */
148 #define SANBOOT_CMD /* SAN boot commands */
150 /* @END general.h */
152 /* @BEGIN general.h
154 * Obscure configuration options
156 * You probably don't need to touch these.
160 #undef BUILD_SERIAL /* Include an automatic build serial
161 * number. Add "bs" to the list of
162 * make targets. For example:
163 * "make bin/rtl8139.dsk bs" */
164 #undef BUILD_ID /* Include a custom build ID string,
165 * e.g "test-foo" */
166 #undef NULL_TRAP /* Attempt to catch NULL function calls */
167 #undef DUMP_GDBSYM /* Dump GDB symbol table information */
169 /* @END general.h */