123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- #ifndef CONFIG_GENERAL_H
- #define CONFIG_GENERAL_H
-
-
-
- FILE_LICENCE ( GPL2_OR_LATER );
-
- #include <config/defaults.h>
-
-
- #define PRODUCT_NAME ""
- #define PRODUCT_SHORT_NAME "iPXE"
-
-
- #define BANNER_TIMEOUT 20
-
-
-
-
- #define NET_PROTO_IPV4
- #undef NET_PROTO_FCOE
-
-
-
-
-
-
-
- #define DOWNLOAD_PROTO_TFTP
- #define DOWNLOAD_PROTO_HTTP
- #undef DOWNLOAD_PROTO_HTTPS
- #undef DOWNLOAD_PROTO_FTP
- #undef DOWNLOAD_PROTO_SLAM
-
-
-
-
-
-
-
-
-
- #define CRYPTO_80211_WEP
- #define CRYPTO_80211_WPA
- #define CRYPTO_80211_WPA2
-
-
-
- #define DNS_RESOLVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define AUTOBOOT_CMD
- #define NVO_CMD
- #define CONFIG_CMD
- #define IFMGMT_CMD
- #define IWMGMT_CMD
- #define FCMGMT_CMD
- #define ROUTE_CMD
- #define IMAGE_CMD
- #define DHCP_CMD
- #define SANBOOT_CMD
- #define MENU_CMD
- #define LOGIN_CMD
-
-
-
-
-
-
-
-
-
- #undef NONPNP_HOOK_INT19
-
-
- #undef ERRMSG_80211
-
-
-
- #define NETDEV_DISCARD_RATE 0
- #undef BUILD_SERIAL
-
- #undef BUILD_ID
-
- #undef NULL_TRAP
- #undef GDBSERIAL
- #undef GDBUDP
-
-
- #include <config/local/general.h>
-
- #endif
|