hostapd.config 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Example hostapd build time configuration
  2. #
  3. # This file lists the configuration options that are used when building the
  4. # hostapd binary. All lines starting with # are ignored. Configuration option
  5. # lines must be commented out complete, if they are not to be included, i.e.,
  6. # just setting VARIABLE=n is not disabling that variable.
  7. #
  8. # This file is included in Makefile, so variables like CFLAGS and LIBS can also
  9. # be modified from here. In most cass, these lines should use += in order not
  10. # to override previous values of the variables.
  11. # use openssl by default
  12. CONFIG_TLS=openssl
  13. # Driver interface for drivers using the nl80211 kernel interface
  14. CONFIG_DRIVER_NL80211=y
  15. # Remove debugging code that is printing out debug messages to stdout.
  16. # This can be used to reduce the size of the hostapd considerably if debugging
  17. # code is not needed.
  18. CONFIG_NO_STDOUT_DEBUG=y
  19. # Remove support for RADIUS accounting
  20. CONFIG_NO_ACCOUNTING=y
  21. # Remove support for RADIUS
  22. CONFIG_NO_RADIUS=y
  23. # Remove support for VLANs
  24. CONFIG_NO_VLAN=y
  25. # Remove support for dumping state into a file on SIGUSR1 signal
  26. # This can be used to reduce binary size at the cost of disabling a debugging
  27. # option.
  28. CONFIG_NO_DUMP_STATE=y