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 */
43 #undef NET_PROTO_IPV6 /* IPv6 protocol */
49 //#undef PXE_STACK /* PXE stack in gPXE - you want this! */
50 //#undef PXE_MENU /* PXE menu booting */
57 #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
58 #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
59 #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
60 #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
61 #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
62 #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
69 //#undef SANBOOT_PROTO_ISCSI /* iSCSI protocol */
70 //#undef SANBOOT_PROTO_AOE /* AoE protocol */
71 //#undef SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
74 * 802.11 cryptosystems and handshaking protocols
77 #define CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */
78 #define CRYPTO_80211_WPA /* WPA Personal, authenticating with passphrase */
79 #define CRYPTO_80211_WPA2 /* Add support for stronger WPA cryptography */
82 * Name resolution modules
86 #define DNS_RESOLVER /* DNS resolver */
91 * Etherboot supports various image formats. Select whichever ones
95 //#define IMAGE_NBI /* NBI image support */
96 //#define IMAGE_ELF /* ELF image support */
97 //#define IMAGE_FREEBSD /* FreeBSD kernel image support */
98 //#define IMAGE_MULTIBOOT /* MultiBoot image support */
99 //#define IMAGE_AOUT /* a.out image support */
100 //#define IMAGE_WINCE /* WinCE image support */
101 //#define IMAGE_PXE /* PXE image support */
102 //#define IMAGE_SCRIPT /* gPXE script image support */
103 //#define IMAGE_BZIMAGE /* Linux bzImage image support */
104 //#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
105 //#define IMAGE_EFI /* EFI image support */
108 * Command-line commands to include
111 #define AUTOBOOT_CMD /* Automatic booting */
112 #define NVO_CMD /* Non-volatile option storage commands */
113 #define CONFIG_CMD /* Option configuration console */
114 #define IFMGMT_CMD /* Interface management commands */
115 #define IWMGMT_CMD /* Wireless interface management commands */
116 #define ROUTE_CMD /* Routing table management commands */
117 #define IMAGE_CMD /* Image management commands */
118 #define DHCP_CMD /* DHCP management commands */
119 #define SANBOOT_CMD /* SAN boot commands */
120 #define LOGIN_CMD /* Login command */
121 #undef TIME_CMD /* Time commands */
122 #undef DIGEST_CMD /* Image crypto digest commands */
123 #define PXE_CMD /* PXE commands */
124 #undef IPV6_CMD /* IPv6 commands */
127 * Error message tables to include
130 #undef ERRMSG_80211 /* All 802.11 error descriptions (~3.3kb) */
133 * Obscure configuration options
135 * You probably don't need to touch these.
139 #undef BUILD_SERIAL /* Include an automatic build serial
140 * number. Add "bs" to the list of
141 * make targets. For example:
142 * "make bin/rtl8139.dsk bs" */
143 #undef BUILD_ID /* Include a custom build ID string,
145 #undef NULL_TRAP /* Attempt to catch NULL function calls */
146 #undef GDBSERIAL /* Remote GDB debugging over serial */
147 #undef GDBUDP /* Remote GDB debugging over UDP
148 * (both may be set) */
150 #include <config/local/general.h>
152 #endif /* CONFIG_GENERAL_H */