Having some issues getting Hostapd working on my Wandboard using the Broadcom WiFi adapter.
Here is my hostapd.conf. I assume this adapter uses the nl80211 driver?
varhostname=$(hostname)
varchannel=36
echo ssid=$varhostname > /etc/hostapd.conf
echo channel=$varchannel >> /etc/hostapd.conf
echo interface=wlan0 >> /etc/hostapd.conf
echo driver=nl80211 >> /etc/hostapd.conf
echo hw_mode=a >> /etc/hostapd.conf
echo wpa=1 >> /etc/hostapd.conf
echo wpa_passphrase=1234567890 >> /etc/hostapd.conf
echo wpa_key_mgmt=WPA-PSK >> /etc/hostapd.conf
echo wpa_pairwise=TKIP CCMP >> /etc/hostapd.conf
echo wpa_ptk_rekey=600 >> /etc/hostapd.conf
hostapd /etc/hostapd.conf