public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Matthias Fischer <matthias.fischer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/2] hostapd: Update to 2.9
Date: Fri, 20 Sep 2019 20:51:36 +0200	[thread overview]
Message-ID: <20190920185136.23479-2-matthias.fischer@ipfire.org> (raw)
In-Reply-To: <20190920185136.23479-1-matthias.fischer@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 5050 bytes --]

For details see:
https://w1.fi/cgit/hostap/plain/hostapd/ChangeLog

Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
 lfs/hostapd                                   | 10 +++++-----
 ...hostapd-2.9-increase_EAPOL-timeouts.patch} |  4 ++--
 ...-noscan.patch => hostapd-2.9-noscan.patch} | 20 +++++++++----------
 3 files changed, 17 insertions(+), 17 deletions(-)
 rename src/patches/hostapd/{hostapd-2.8-increase_EAPOL-timeouts.patch => hostapd-2.9-increase_EAPOL-timeouts.patch} (86%)
 rename src/patches/hostapd/{hostapd-2.8-noscan.patch => hostapd-2.9-noscan.patch} (77%)

diff --git a/lfs/hostapd b/lfs/hostapd
index 9dabc3b5b..c02c9724c 100644
--- a/lfs/hostapd
+++ b/lfs/hostapd
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.8
+VER        = 2.9
 
 THISAPP    = hostapd-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -32,7 +32,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = hostapd
-PAK_VER    = 48
+PAK_VER    = 49
 
 DEPS       = ""
 
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = ed2c254e5f400838cb9d8e7b6e43b86c
+$(DL_FILE)_MD5 = f188fc53a495fe7af3b6d77d3c31dee8
 
 install : $(TARGET)
 
@@ -78,8 +78,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
 
-	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.8-increase_EAPOL-timeouts.patch
-	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.8-noscan.patch
+	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.9-increase_EAPOL-timeouts.patch
+	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.9-noscan.patch
 
 	cd $(DIR_APP)/hostapd && cp $(DIR_SRC)/config/hostapd/config ./.config
 	cd $(DIR_APP)/hostapd && sed -e "s@/usr/local@/usr(a)g" -i Makefile
diff --git a/src/patches/hostapd/hostapd-2.8-increase_EAPOL-timeouts.patch b/src/patches/hostapd/hostapd-2.9-increase_EAPOL-timeouts.patch
similarity index 86%
rename from src/patches/hostapd/hostapd-2.8-increase_EAPOL-timeouts.patch
rename to src/patches/hostapd/hostapd-2.9-increase_EAPOL-timeouts.patch
index 4be4cd526..87aec005b 100644
--- a/src/patches/hostapd/hostapd-2.8-increase_EAPOL-timeouts.patch
+++ b/src/patches/hostapd/hostapd-2.9-increase_EAPOL-timeouts.patch
@@ -1,6 +1,6 @@
 diff U3 src/ap/wpa_auth.c src/ap/wpa_auth.c
---- a/src/ap/wpa_auth.c	Sun Apr 21 09:10:22 2019
-+++ b/src/ap/wpa_auth.c	Sun Jun  9 01:05:24 2019
+--- a/src/ap/wpa_auth.c	Wed Aug  7 15:25:25 2019
++++ b/src/ap/wpa_auth.c	Fri Sep 20 17:35:23 2019
 @@ -65,9 +65,9 @@
  			  struct wpa_group *group);
  static u8 * ieee80211w_kde_add(struct wpa_state_machine *sm, u8 *pos);
diff --git a/src/patches/hostapd/hostapd-2.8-noscan.patch b/src/patches/hostapd/hostapd-2.9-noscan.patch
similarity index 77%
rename from src/patches/hostapd/hostapd-2.8-noscan.patch
rename to src/patches/hostapd/hostapd-2.9-noscan.patch
index a323aab47..c4df23029 100644
--- a/src/patches/hostapd/hostapd-2.8-noscan.patch
+++ b/src/patches/hostapd/hostapd-2.9-noscan.patch
@@ -1,7 +1,7 @@
 diff U3 hostapd/config_file.c hostapd/config_file.c
---- a/hostapd/config_file.c	Sun Apr 21 09:10:22 2019
-+++ b/hostapd/config_file.c	Sun Jun  9 01:08:21 2019
-@@ -3390,6 +3390,10 @@
+--- a/hostapd/config_file.c	Wed Aug  7 15:25:25 2019
++++ b/hostapd/config_file.c	Fri Sep 20 17:36:33 2019
+@@ -3411,6 +3411,10 @@
  			bss->ieee80211w = 1;
  #endif /* CONFIG_OCV */
  #ifdef CONFIG_IEEE80211N
@@ -13,9 +13,9 @@ diff U3 hostapd/config_file.c hostapd/config_file.c
  		conf->ieee80211n = atoi(pos);
  	} else if (os_strcmp(buf, "ht_capab") == 0) {
 diff U3 src/ap/ap_config.h src/ap/ap_config.h
---- a/src/ap/ap_config.h	Sun Apr 21 09:10:22 2019
-+++ b/src/ap/ap_config.h	Sun Jun  9 01:06:42 2019
-@@ -801,6 +801,8 @@
+--- a/src/ap/ap_config.h	Wed Aug  7 15:25:25 2019
++++ b/src/ap/ap_config.h	Fri Sep 20 17:38:06 2019
+@@ -932,6 +932,8 @@
  
  	int ht_op_mode_fixed;
  	u16 ht_capab;
@@ -25,8 +25,8 @@ diff U3 src/ap/ap_config.h src/ap/ap_config.h
  	int secondary_channel;
  	int no_pri_sec_switch;
 diff U3 src/ap/hw_features.c src/ap/hw_features.c
---- a/src/ap/hw_features.c	Sun Apr 21 09:10:22 2019
-+++ b/src/ap/hw_features.c	Sun Jun  9 01:09:41 2019
+--- a/src/ap/hw_features.c	Wed Aug  7 15:25:25 2019
++++ b/src/ap/hw_features.c	Fri Sep 20 17:39:02 2019
 @@ -477,7 +477,8 @@
  	int ret;
  
@@ -38,8 +38,8 @@ diff U3 src/ap/hw_features.c src/ap/hw_features.c
  
  	hostapd_set_state(iface, HAPD_IFACE_HT_SCAN);
 diff U3 src/ap/ieee802_11_ht.c src/ap/ieee802_11_ht.c
---- a/src/ap/ieee802_11_ht.c	Sun Apr 21 09:10:22 2019
-+++ b/src/ap/ieee802_11_ht.c	Sun Jun  9 01:13:09 2019
+--- a/src/ap/ieee802_11_ht.c	Wed Aug  7 15:25:25 2019
++++ b/src/ap/ieee802_11_ht.c	Fri Sep 20 17:41:24 2019
 @@ -252,6 +252,9 @@
  		return;
  	}
-- 
2.18.0


  reply	other threads:[~2019-09-20 18:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-20 18:51 [PATCH 1/2] wpa_supplicant: " Matthias Fischer
2019-09-20 18:51 ` Matthias Fischer [this message]
2019-09-23 19:38   ` [PATCH 2/2] hostapd: " Michael Tremer
2019-09-23 19:38 ` [PATCH 1/2] wpa_supplicant: " Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190920185136.23479-2-matthias.fischer@ipfire.org \
    --to=matthias.fischer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox