1234567891011121314151617181920212223242526272829303132333435 |
- # Example hostapd build time configuration
- #
- # This file lists the configuration options that are used when building the
- # hostapd binary. All lines starting with # are ignored. Configuration option
- # lines must be commented out complete, if they are not to be included, i.e.,
- # just setting VARIABLE=n is not disabling that variable.
- #
- # This file is included in Makefile, so variables like CFLAGS and LIBS can also
- # be modified from here. In most cass, these lines should use += in order not
- # to override previous values of the variables.
- # use openssl by default
- CONFIG_TLS=openssl
- # Driver interface for drivers using the nl80211 kernel interface
- CONFIG_DRIVER_NL80211=y
- # Remove debugging code that is printing out debug messages to stdout.
- # This can be used to reduce the size of the hostapd considerably if debugging
- # code is not needed.
- CONFIG_NO_STDOUT_DEBUG=y
- # Remove support for RADIUS accounting
- CONFIG_NO_ACCOUNTING=y
- # Remove support for RADIUS
- CONFIG_NO_RADIUS=y
- # Remove support for VLANs
- CONFIG_NO_VLAN=y
- # Remove support for dumping state into a file on SIGUSR1 signal
- # This can be used to reduce binary size at the cost of disabling a debugging
- # option.
- CONFIG_NO_DUMP_STATE=y
|