1 #ifndef CONFIG_GENERAL_H
2 #define CONFIG_GENERAL_H
6 * General configuration
10 #include <config/defaults.h>
16 #define BANNER_TIMEOUT 20 /* Tenths of a second for which the shell
17 banner should appear */
24 #define NET_PROTO_IPV4 /* IPv4 protocol */
31 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
32 #undef DOWNLOAD_PROTO_NFS /* Network File System */
33 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
34 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
35 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
36 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
37 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
38 #undef DOWNLOAD_PROTO_FSP /* FSP? */
45 //#undef SANBOOT_PROTO_ISCSI /* iSCSI protocol */
46 //#undef SANBOOT_PROTO_AOE /* AoE protocol */
49 * Name resolution modules
53 #define DNS_RESOLVER /* DNS resolver */
54 #undef NMB_RESOLVER /* NMB resolver */
59 * Etherboot supports various image formats. Select whichever ones
63 //#define IMAGE_NBI /* NBI image support */
64 //#define IMAGE_ELF /* ELF image support */
65 //#define IMAGE_FREEBSD /* FreeBSD kernel image support */
66 //#define IMAGE_MULTIBOOT /* MultiBoot image support */
67 //#define IMAGE_AOUT /* a.out image support */
68 //#define IMAGE_WINCE /* WinCE image support */
69 //#define IMAGE_PXE /* PXE image support */
70 //#define IMAGE_SCRIPT /* gPXE script image support */
71 //#define IMAGE_BZIMAGE /* Linux bzImage image support */
72 //#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
75 * Command-line commands to include
78 #define AUTOBOOT_CMD /* Automatic booting */
79 #define NVO_CMD /* Non-volatile option storage commands */
80 #define CONFIG_CMD /* Option configuration console */
81 #define IFMGMT_CMD /* Interface management commands */
82 #define ROUTE_CMD /* Routing table management commands */
83 #define IMAGE_CMD /* Image management commands */
84 #define DHCP_CMD /* DHCP management commands */
85 #define SANBOOT_CMD /* SAN boot commands */
88 * Obscure configuration options
90 * You probably don't need to touch these.
94 #undef BUILD_SERIAL /* Include an automatic build serial
95 * number. Add "bs" to the list of
96 * make targets. For example:
97 * "make bin/rtl8139.dsk bs" */
98 #undef BUILD_ID /* Include a custom build ID string,
100 #undef NULL_TRAP /* Attempt to catch NULL function calls */
101 #undef GDBSERIAL /* Remote GDB debugging over serial */
102 #undef GDBUDP /* Remote GDB debugging over UDP
103 * (both may be set) */
105 #endif /* CONFIG_GENERAL_H */