1 #ifndef CONFIG_GENERAL_H
2 #define CONFIG_GENERAL_H
6 * General configuration
11 * Console configuration
13 * These options specify the console types that Etherboot will use for
14 * interaction with the user.
18 #define CONSOLE_FIRMWARE /* Default BIOS console */
19 #undef CONSOLE_SERIAL /* Serial port */
20 #undef CONSOLE_DIRECT_VGA /* Direct access to VGA card */
21 #undef CONSOLE_BTEXT /* Who knows what this does? */
22 #undef CONSOLE_PC_KBD /* Direct access to PC keyboard */
28 #define TIMER_BIOS /* 18Hz BIOS timer */
29 #define TIMER_RDTSC /* CPU TimeStamp Counter timer */
30 #define BANNER_TIMEOUT 20 /* Tenths of a second for which the shell
31 banner should appear */
38 #define NET_PROTO_IPV4 /* IPv4 protocol */
45 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
46 #undef DOWNLOAD_PROTO_NFS /* Network File System */
47 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
48 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
49 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
50 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
51 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
52 #undef DOWNLOAD_PROTO_FSP /* FSP? */
55 * Name resolution modules
59 #define DNS_RESOLVER /* DNS resolver */
60 #undef NMB_RESOLVER /* NMB resolver */
65 * Etherboot supports various image formats. Select whichever ones
69 #undef IMAGE_NBI /* NBI image support */
70 #define IMAGE_ELF /* ELF image support */
71 #undef IMAGE_FREEBSD /* FreeBSD kernel image support */
72 #define IMAGE_MULTIBOOT /* MultiBoot image support */
73 #undef IMAGE_AOUT /* a.out image support */
74 #undef IMAGE_WINCE /* WinCE image support */
75 #define IMAGE_PXE /* PXE image support */
76 #define IMAGE_SCRIPT /* gPXE script image support */
77 #define IMAGE_BZIMAGE /* Linux bzImage image support */
78 #define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
81 * Command-line commands to include
84 #define AUTOBOOT_CMD /* Automatic booting */
85 #define NVO_CMD /* Non-volatile option storage commands */
86 #define CONFIG_CMD /* Option configuration console */
87 #define IFMGMT_CMD /* Interface management commands */
88 #define ROUTE_CMD /* Routing table management commands */
89 #define IMAGE_CMD /* Image management commands */
90 #define DHCP_CMD /* DHCP management commands */
91 #define SANBOOT_CMD /* SAN boot commands */
94 * Obscure configuration options
96 * You probably don't need to touch these.
100 #undef BUILD_SERIAL /* Include an automatic build serial
101 * number. Add "bs" to the list of
102 * make targets. For example:
103 * "make bin/rtl8139.dsk bs" */
104 #undef BUILD_ID /* Include a custom build ID string,
106 #undef NULL_TRAP /* Attempt to catch NULL function calls */
107 #undef GDBSERIAL /* Remote GDB debugging over serial */
108 #undef GDBUDP /* Remote GDB debugging over UDP
109 * (both may be set) */
111 #endif /* CONFIG_GENERAL_H */