diff mbox

[base,8/8] Added HOSTAPD AP setup as default.

Message ID 1407416025-2990-8-git-send-email-dore@madsdore.dk
State Rejected
Delegated to: Kim
Headers show

Commit Message

Mads Doré Hansen Aug. 7, 2014, 12:53 p.m. UTC
---
 ...-HOSTAPD-with-WLAN-AP-setup-configuration.patch | 253 +++++++++++++++++++++
 recipes/hostapd/hostapd_1.0.oe                     |   1 +
 2 files changed, 254 insertions(+)
 create mode 100644 recipes/hostapd/0001-HOSTAPD-with-WLAN-AP-setup-configuration.patch
diff mbox

Patch

diff --git a/recipes/hostapd/0001-HOSTAPD-with-WLAN-AP-setup-configuration.patch b/recipes/hostapd/0001-HOSTAPD-with-WLAN-AP-setup-configuration.patch
new file mode 100644
index 0000000..408c669
--- /dev/null
+++ b/recipes/hostapd/0001-HOSTAPD-with-WLAN-AP-setup-configuration.patch
@@ -0,0 +1,253 @@ 
+From eacf5b34c8404a33191206aa8cd56e70170f3c5c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Mads=20Dor=C3=A9?= <dore@madsdore.dk>
+Date: Wed, 30 Jul 2014 13:57:32 +0200
+Subject: [base] HOSTAPD with WLAN AP setup configuration.
+
+---
+ recipes/hostapd/hostapd-1.0/init       |  37 +++++++++
+ recipes/hostapd/hostapd-1.0/wlan.patch | 133 +++++++++++++++++++++++++++++++++
+ recipes/hostapd/hostapd_1.0.oe         |  39 ++++++++++
+ recipes/hostapd/hostapd_1.0.oe.sig     |   1 +
+ 4 files changed, 210 insertions(+)
+ create mode 100644 recipes/hostapd/hostapd-1.0/init
+ create mode 100644 recipes/hostapd/hostapd-1.0/wlan.patch
+ create mode 100644 recipes/hostapd/hostapd_1.0.oe
+ create mode 100644 recipes/hostapd/hostapd_1.0.oe.sig
+
+diff --git a/recipes/hostapd/hostapd-1.0/init b/recipes/hostapd/hostapd-1.0/init
+new file mode 100644
+index 0000000..79f74b6
+--- /dev/null
++++ b/recipes/hostapd/hostapd-1.0/init
+@@ -0,0 +1,37 @@
++#!/bin/sh
++DAEMON=/usr/sbin/hostapd
++NAME=hostapd
++DESC="HOSTAP Daemon"
++ARGS="/etc/hostapd.conf -B"
++
++test -f $DAEMON || exit 0
++
++set -e
++
++case "$1" in
++    start)
++	echo -n "Starting $DESC: "
++	start-stop-daemon -S -x $DAEMON -- $ARGS
++	echo "$NAME."
++	;;
++    stop)
++	echo -n "Stopping $DESC: "
++	start-stop-daemon -K -x $DAEMON
++	echo "$NAME."
++	;;
++    restart)
++	$0 stop
++	$0 start
++	;;
++    reload)
++	echo -n "Reloading $DESC: "
++	killall -HUP $(basename ${DAEMON})
++	echo "$NAME."
++	;;
++    *)
++	echo "Usage: $0 {start|stop|restart|reload}"
++	exit 1
++	;;
++esac
++
++exit 0
+diff --git a/recipes/hostapd/hostapd-1.0/wlan.patch b/recipes/hostapd/hostapd-1.0/wlan.patch
+new file mode 100644
+index 0000000..d83b48e
+--- /dev/null
++++ b/recipes/hostapd/hostapd-1.0/wlan.patch
+@@ -0,0 +1,133 @@
++--- hostapd/defconfig.orig	2014-07-30 11:26:22.599087301 +0200
+++++ hostapd/defconfig	2014-07-30 11:27:26.175090018 +0200
++@@ -13,14 +13,24 @@
++ CONFIG_DRIVER_HOSTAP=y
++ 
++ # Driver interface for wired authenticator
++-#CONFIG_DRIVER_WIRED=y
+++CONFIG_DRIVER_WIRED=y
++ 
++ # Driver interface for madwifi driver
++ #CONFIG_DRIVER_MADWIFI=y
++ #CFLAGS += -I../../madwifi # change to the madwifi source directory
++ 
+++# Driver interface for Prism54 driver
+++CONFIG_DRIVER_PRISM54=y
+++
++ # Driver interface for drivers using the nl80211 kernel interface
++ CONFIG_DRIVER_NL80211=y
+++CONFIG_LIBNL32=y
+++# driver_nl80211.c requires a rather new libnl (version 1.1) which may not be
+++# shipped with your distribution yet. If that is the case, you need to build
+++# newer libnl version and point the hostapd build to use it.
+++#LIBNL=/usr/src/libnl
+++#CFLAGS += -I$(LIBNL)/include
+++#LIBS += -L$(LIBNL)/lib
++ 
++ # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
++ #CONFIG_DRIVER_BSD=y
++@@ -103,9 +113,7 @@
++ #CONFIG_EAP_FAST=y
++ 
++ # Wi-Fi Protected Setup (WPS)
++-#CONFIG_WPS=y
++-# Enable WSC 2.0 support
++-#CONFIG_WPS2=y
+++CONFIG_WPS=y
++ # Enable UPnP support for external WPS Registrars
++ #CONFIG_WPS_UPNP=y
++ 
++@@ -121,7 +129,7 @@
++ 
++ # RADIUS authentication server. This provides access to the integrated EAP
++ # server from external hosts using RADIUS.
++-#CONFIG_RADIUS_SERVER=y
+++CONFIG_RADIUS_SERVER=y
++ 
++ # Build IPv6 support for RADIUS operations
++ CONFIG_IPV6=y
++@@ -131,10 +139,10 @@
++ 
++ # Use the hostapd's IEEE 802.11 authentication (ACL), but without
++ # the IEEE 802.11 Management capability (e.g., madwifi or FreeBSD/net80211)
++-#CONFIG_DRIVER_RADIUS_ACL=y
+++CONFIG_DRIVER_RADIUS_ACL=y
++ 
++ # IEEE 802.11n (High Throughput) support
++-#CONFIG_IEEE80211N=y
+++CONFIG_IEEE80211N=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
++--- hostapd/hostapd.conf.orig	2014-07-30 11:22:15.387076733 +0200
+++++ hostapd/hostapd.conf	2014-07-30 11:25:17.555084520 +0200
++@@ -23,6 +23,7 @@
++ # Use driver=none if building hostapd as a standalone RADIUS server that does
++ # not control any wireless/wired driver.
++ # driver=hostap
+++driver=nl80211
++ 
++ # hostapd event logger configuration
++ #
++@@ -83,7 +84,7 @@
++ ##### IEEE 802.11 related configuration #######################################
++ 
++ # SSID to be used in IEEE 802.11 management frames
++-ssid=test
+++ssid=AP-Test
++ 
++ # Country code (ISO/IEC 3166-1). Used to set regulatory domain.
++ # Set as needed to indicate country in which device is operating.
++@@ -184,7 +185,7 @@
++ # Bit fields of allowed authentication algorithms:
++ # bit 0 = Open System Authentication
++ # bit 1 = Shared Key Authentication (requires WEP)
++-auth_algs=3
+++auth_algs=1
++ 
++ # Send empty SSID in beacons and ignore probe request frames that do not
++ # specify full SSID, i.e., require stations to know SSID.
++@@ -679,7 +680,7 @@
++ # and/or WPA2 (full IEEE 802.11i/RSN):
++ # bit0 = WPA
++ # bit1 = IEEE 802.11i/RSN (WPA2) (dot11RSNAEnabled)
++-#wpa=1
+++wpa=1
++ 
++ # WPA pre-shared keys for WPA-PSK. This can be either entered as a 256-bit
++ # secret in hex format (64 hex digits), wpa_psk, or as an ASCII passphrase
++@@ -688,7 +689,7 @@
++ # wpa_psk (dot11RSNAConfigPSKValue)
++ # wpa_passphrase (dot11RSNAConfigPSKPassPhrase)
++ #wpa_psk=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
++-#wpa_passphrase=secret passphrase
+++wpa_passphrase=1234
++ 
++ # Optionally, WPA PSKs can be read from a separate text file (containing list
++ # of (PSK,MAC address) pairs. This allows more than one PSK to be configured.
++@@ -701,6 +702,7 @@
++ # added to enable SHA256-based stronger algorithms.
++ # (dot11RSNAConfigAuthenticationSuitesTable)
++ #wpa_key_mgmt=WPA-PSK WPA-EAP
+++wpa_key_mgmt=WPA-PSK
++ 
++ # Set of accepted cipher suites (encryption algorithms) for pairwise keys
++ # (unicast packets). This is a space separated list of algorithms:
++@@ -712,7 +714,7 @@
++ # TKIP will be used as the group cipher.
++ # (dot11RSNAConfigPairwiseCiphersTable)
++ # Pairwise cipher for WPA (v1) (default: TKIP)
++-#wpa_pairwise=TKIP CCMP
+++wpa_pairwise=TKIP CCMP
++ # Pairwise cipher for RSN/WPA2 (default: use wpa_pairwise value)
++ #rsn_pairwise=CCMP
++ 
++@@ -730,7 +732,7 @@
++ 
++ # Maximum lifetime for PTK in seconds. This can be used to enforce rekeying of
++ # PTK to mitigate some attacks against TKIP deficiencies.
++-#wpa_ptk_rekey=600
+++wpa_ptk_rekey=600
++ 
++ # Enable IEEE 802.11i/RSN/WPA2 pre-authentication. This is used to speed up
++ # roaming be pre-authenticating IEEE 802.1X/EAP part of the full RSN
+diff --git a/recipes/hostapd/hostapd_1.0.oe b/recipes/hostapd/hostapd_1.0.oe
+new file mode 100644
+index 0000000..33d6e03
+--- /dev/null
++++ b/recipes/hostapd/hostapd_1.0.oe
+@@ -0,0 +1,39 @@
++DESCRIPTION = "User space daemon for extended IEEE 802.11 management"
++HOMEPAGE = "http://hostap.epitest.fi"
++LICENSE = "GPLv2 | BSD"
++
++SRC_URI  = "http://hostap.epitest.fi/releases/hostapd-${PV}.tar.gz"
++SRC_URI += "file://init"
++SRC_URI += """
++  file://wlan.patch
++"""
++
++inherit c make
++
++LIBS = "libnl-3 libnl-genl-3 libssl libcrypto"
++DEPENDS += "${LIBS}"
++
++RDEPENDS += "libnl-3 libnl-genl-3 openssl crda"
++
++S = "${SRCDIR}/hostapd-${PV}/hostapd"
++
++CFLAGS += "-I${HOST_SYSROOT}${includedir}/libnl3"
++
++do_configure() {
++    install -m 0644 ${S}/defconfig ${S}/.config 
++}
++
++do_install() {
++    install -d ${D}${sbindir} ${D}${sysconfdir}/init.d
++    install -m 0644 ${S}/hostapd.conf ${D}${sysconfdir}
++    install -m 0755 ${S}/hostapd ${D}${sbindir}
++    install -m 0755 ${S}/hostapd_cli ${D}${sbindir}
++    install -m 755 ${SRCDIR}/init ${D}${sysconfdir}/init.d/hostapd 
++}
++
++PACKAGE =+ "${PN}-conf"
++
++RDEPENDS_${PN} += "${LIBS}"
++
++FILES_${PN}-conf = "${sysconfdir}/hostapd.conf"
++
+diff --git a/recipes/hostapd/hostapd_1.0.oe.sig b/recipes/hostapd/hostapd_1.0.oe.sig
+new file mode 100644
+index 0000000..637e0d4
+--- /dev/null
++++ b/recipes/hostapd/hostapd_1.0.oe.sig
+@@ -0,0 +1 @@
++4edf267bc5943a5f7d6d9c0abcce0973bfbad5fa  hostapd-1.0.tar.gz
+-- 
+2.0.3
+
diff --git a/recipes/hostapd/hostapd_1.0.oe b/recipes/hostapd/hostapd_1.0.oe
index 33d6e03..847c28b 100644
--- a/recipes/hostapd/hostapd_1.0.oe
+++ b/recipes/hostapd/hostapd_1.0.oe
@@ -33,6 +33,7 @@  do_install() {
 
 PACKAGE =+ "${PN}-conf"
 
+DEPENDS_${PN} += "${LIBS}"
 RDEPENDS_${PN} += "${LIBS}"
 
 FILES_${PN}-conf = "${sysconfdir}/hostapd.conf"