1 #ifndef CONFIG_GENERAL_H
2 #define CONFIG_GENERAL_H
6 * General configuration
10 FILE_LICENCE ( GPL2_OR_LATER );
12 #include <config/defaults.h>
17 * Vendors may use these strings to add their own branding to gPXE.
18 * PRODUCT_NAME is displayed prior to any gPXE branding in startup
19 * messages, and PRODUCT_SHORT_NAME is used where a brief product
20 * label is required (e.g. in BIOS boot selection menus).
22 * To minimise end-user confusion, it's probably a good idea to either
23 * make PRODUCT_SHORT_NAME a substring of PRODUCT_NAME or leave it as
27 #define PRODUCT_NAME ""
28 #define PRODUCT_SHORT_NAME "gPXE"
34 #define BANNER_TIMEOUT 20 /* Tenths of a second for which the shell
35 banner should appear */
42 #define NET_PROTO_IPV4 /* IPv4 protocol */
49 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
50 #undef DOWNLOAD_PROTO_NFS /* Network File System */
51 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
52 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
53 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
54 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
55 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
56 #undef DOWNLOAD_PROTO_FSP /* FSP? */
63 //#undef SANBOOT_PROTO_ISCSI /* iSCSI protocol */
64 //#undef SANBOOT_PROTO_AOE /* AoE protocol */
65 //#undef SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
68 * 802.11 cryptosystems and handshaking protocols
71 #define CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */
72 #define CRYPTO_80211_WPA_PSK /* WPA "Personal" frontend using a passphrase */
75 * Name resolution modules
79 #define DNS_RESOLVER /* DNS resolver */
80 #undef NMB_RESOLVER /* NMB resolver */
85 * Etherboot supports various image formats. Select whichever ones
89 //#define IMAGE_NBI /* NBI image support */
90 //#define IMAGE_ELF /* ELF image support */
91 //#define IMAGE_FREEBSD /* FreeBSD kernel image support */
92 //#define IMAGE_MULTIBOOT /* MultiBoot image support */
93 //#define IMAGE_AOUT /* a.out image support */
94 //#define IMAGE_WINCE /* WinCE image support */
95 //#define IMAGE_PXE /* PXE image support */
96 //#define IMAGE_SCRIPT /* gPXE script image support */
97 //#define IMAGE_BZIMAGE /* Linux bzImage image support */
98 //#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
99 //#define IMAGE_EFI /* EFI image support */
102 * Command-line commands to include
105 #define AUTOBOOT_CMD /* Automatic booting */
106 #define NVO_CMD /* Non-volatile option storage commands */
107 #define CONFIG_CMD /* Option configuration console */
108 #define IFMGMT_CMD /* Interface management commands */
109 #define IWMGMT_CMD /* Wireless interface management commands */
110 #define ROUTE_CMD /* Routing table management commands */
111 #define IMAGE_CMD /* Image management commands */
112 #define DHCP_CMD /* DHCP management commands */
113 #define SANBOOT_CMD /* SAN boot commands */
114 #define LOGIN_CMD /* Login command */
115 #undef TIME_CMD /* Time commands */
116 #undef DIGEST_CMD /* Image crypto digest commands */
117 //#undef PXE_CMD /* PXE commands */
120 * Error message tables to include
123 #undef ERRMSG_80211 /* All 802.11 error descriptions (~3.3kb) */
126 * Obscure configuration options
128 * You probably don't need to touch these.
132 #undef BUILD_SERIAL /* Include an automatic build serial
133 * number. Add "bs" to the list of
134 * make targets. For example:
135 * "make bin/rtl8139.dsk bs" */
136 #undef BUILD_ID /* Include a custom build ID string,
138 #undef NULL_TRAP /* Attempt to catch NULL function calls */
139 #undef GDBSERIAL /* Remote GDB debugging over serial */
140 #undef GDBUDP /* Remote GDB debugging over UDP
141 * (both may be set) */
143 #endif /* CONFIG_GENERAL_H */