hostap_config.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef HOSTAP_CONFIG_H
  2. #define HOSTAP_CONFIG_H
  3. #define PRISM2_VERSION "0.4.4-kernel"
  4. /* In the previous versions of Host AP driver, support for user space version
  5. * of IEEE 802.11 management (hostapd) used to be disabled in the default
  6. * configuration. From now on, support for hostapd is always included and it is
  7. * possible to disable kernel driver version of IEEE 802.11 management with a
  8. * separate define, PRISM2_NO_KERNEL_IEEE80211_MGMT. */
  9. /* #define PRISM2_NO_KERNEL_IEEE80211_MGMT */
  10. /* Maximum number of events handler per one interrupt */
  11. #define PRISM2_MAX_INTERRUPT_EVENTS 20
  12. /* Include code for downloading firmware images into volatile RAM. */
  13. #define PRISM2_DOWNLOAD_SUPPORT
  14. /* Allow kernel configuration to enable download support. */
  15. #if !defined(PRISM2_DOWNLOAD_SUPPORT) && defined(CONFIG_HOSTAP_FIRMWARE)
  16. #define PRISM2_DOWNLOAD_SUPPORT
  17. #endif
  18. #ifdef PRISM2_DOWNLOAD_SUPPORT
  19. /* Allow writing firmware images into flash, i.e., to non-volatile storage.
  20. * Before you enable this option, you should make absolutely sure that you are
  21. * using prism2_srec utility that comes with THIS version of the driver!
  22. * In addition, please note that it is possible to kill your card with
  23. * non-volatile download if you are using incorrect image. This feature has not
  24. * been fully tested, so please be careful with it. */
  25. /* #define PRISM2_NON_VOLATILE_DOWNLOAD */
  26. #endif /* PRISM2_DOWNLOAD_SUPPORT */
  27. /* Save low-level I/O for debugging. This should not be enabled in normal use.
  28. */
  29. /* #define PRISM2_IO_DEBUG */
  30. /* Following defines can be used to remove unneeded parts of the driver, e.g.,
  31. * to limit the size of the kernel module. Definitions can be added here in
  32. * hostap_config.h or they can be added to make command with EXTRA_CFLAGS,
  33. * e.g.,
  34. * 'make pccard EXTRA_CFLAGS="-DPRISM2_NO_DEBUG -DPRISM2_NO_PROCFS_DEBUG"'
  35. */
  36. /* Do not include debug messages into the driver */
  37. /* #define PRISM2_NO_DEBUG */
  38. /* Do not include /proc/net/prism2/wlan#/{registers,debug} */
  39. /* #define PRISM2_NO_PROCFS_DEBUG */
  40. /* Do not include station functionality (i.e., allow only Master (Host AP) mode
  41. */
  42. /* #define PRISM2_NO_STATION_MODES */
  43. #endif /* HOSTAP_CONFIG_H */