You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #ifndef CONFIG_GENERAL_H
  2. #define CONFIG_GENERAL_H
  3. /** @file
  4. *
  5. * General configuration
  6. *
  7. */
  8. #include <config/defaults.h>
  9. /*
  10. * Timer configuration
  11. *
  12. */
  13. #define BANNER_TIMEOUT 20 /* Tenths of a second for which the shell
  14. banner should appear */
  15. /*
  16. * Network protocols
  17. *
  18. */
  19. #define NET_PROTO_IPV4 /* IPv4 protocol */
  20. /*
  21. * Download protocols
  22. *
  23. */
  24. #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */
  25. #undef DOWNLOAD_PROTO_NFS /* Network File System */
  26. #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
  27. #undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
  28. #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
  29. #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
  30. #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
  31. #undef DOWNLOAD_PROTO_FSP /* FSP? */
  32. /*
  33. * SAN boot protocols
  34. *
  35. */
  36. //#undef SANBOOT_PROTO_ISCSI /* iSCSI protocol */
  37. //#undef SANBOOT_PROTO_AOE /* AoE protocol */
  38. /*
  39. * Name resolution modules
  40. *
  41. */
  42. #define DNS_RESOLVER /* DNS resolver */
  43. #undef NMB_RESOLVER /* NMB resolver */
  44. /*
  45. * Image types
  46. *
  47. * Etherboot supports various image formats. Select whichever ones
  48. * you want to use.
  49. *
  50. */
  51. //#define IMAGE_NBI /* NBI image support */
  52. //#define IMAGE_ELF /* ELF image support */
  53. //#define IMAGE_FREEBSD /* FreeBSD kernel image support */
  54. //#define IMAGE_MULTIBOOT /* MultiBoot image support */
  55. //#define IMAGE_AOUT /* a.out image support */
  56. //#define IMAGE_WINCE /* WinCE image support */
  57. //#define IMAGE_PXE /* PXE image support */
  58. //#define IMAGE_SCRIPT /* gPXE script image support */
  59. //#define IMAGE_BZIMAGE /* Linux bzImage image support */
  60. //#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
  61. //#define IMAGE_EFI /* EFI image support */
  62. /*
  63. * Command-line commands to include
  64. *
  65. */
  66. #define AUTOBOOT_CMD /* Automatic booting */
  67. #define NVO_CMD /* Non-volatile option storage commands */
  68. #define CONFIG_CMD /* Option configuration console */
  69. #define IFMGMT_CMD /* Interface management commands */
  70. #define ROUTE_CMD /* Routing table management commands */
  71. #define IMAGE_CMD /* Image management commands */
  72. #define DHCP_CMD /* DHCP management commands */
  73. #define SANBOOT_CMD /* SAN boot commands */
  74. /*
  75. * Obscure configuration options
  76. *
  77. * You probably don't need to touch these.
  78. *
  79. */
  80. #undef BUILD_SERIAL /* Include an automatic build serial
  81. * number. Add "bs" to the list of
  82. * make targets. For example:
  83. * "make bin/rtl8139.dsk bs" */
  84. #undef BUILD_ID /* Include a custom build ID string,
  85. * e.g "test-foo" */
  86. #undef NULL_TRAP /* Attempt to catch NULL function calls */
  87. #undef GDBSERIAL /* Remote GDB debugging over serial */
  88. #undef GDBUDP /* Remote GDB debugging over UDP
  89. * (both may be set) */
  90. #endif /* CONFIG_GENERAL_H */