1 #ifndef CONFIG_GENERAL_H
2 #define CONFIG_GENERAL_H
6 * General configuration
14 #define BANNER_TIMEOUT 20 /* Tenths of a second for which the shell
15 banner should appear */
22 #define NET_PROTO_IPV4 /* IPv4 protocol */
29 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
30 #undef DOWNLOAD_PROTO_NFS /* Network File System */
31 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
32 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
33 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
34 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
35 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
36 #undef DOWNLOAD_PROTO_FSP /* FSP? */
39 * Name resolution modules
43 #define DNS_RESOLVER /* DNS resolver */
44 #undef NMB_RESOLVER /* NMB resolver */
49 * Etherboot supports various image formats. Select whichever ones
53 #undef IMAGE_NBI /* NBI image support */
54 #define IMAGE_ELF /* ELF image support */
55 #undef IMAGE_FREEBSD /* FreeBSD kernel image support */
56 #define IMAGE_MULTIBOOT /* MultiBoot image support */
57 #undef IMAGE_AOUT /* a.out image support */
58 #undef IMAGE_WINCE /* WinCE image support */
59 #define IMAGE_PXE /* PXE image support */
60 #define IMAGE_SCRIPT /* gPXE script image support */
61 #define IMAGE_BZIMAGE /* Linux bzImage image support */
62 #define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
65 * Command-line commands to include
68 #define AUTOBOOT_CMD /* Automatic booting */
69 #define NVO_CMD /* Non-volatile option storage commands */
70 #define CONFIG_CMD /* Option configuration console */
71 #define IFMGMT_CMD /* Interface management commands */
72 #define ROUTE_CMD /* Routing table management commands */
73 #define IMAGE_CMD /* Image management commands */
74 #define DHCP_CMD /* DHCP management commands */
75 #define SANBOOT_CMD /* SAN boot commands */
78 * Obscure configuration options
80 * You probably don't need to touch these.
84 #undef BUILD_SERIAL /* Include an automatic build serial
85 * number. Add "bs" to the list of
86 * make targets. For example:
87 * "make bin/rtl8139.dsk bs" */
88 #undef BUILD_ID /* Include a custom build ID string,
90 #undef NULL_TRAP /* Attempt to catch NULL function calls */
91 #undef GDBSERIAL /* Remote GDB debugging over serial */
92 #undef GDBUDP /* Remote GDB debugging over UDP
93 * (both may be set) */
95 #endif /* CONFIG_GENERAL_H */