Compare commits

...

3 Commits

Author SHA1 Message Date
Patrick Walther 6c6bd3ab21 FIX: [iw] use correct NLA type while getting station dump with MESH
BugzId: 79975
(cherry picked from commit dd1487e4bf)
2022-06-20 10:41:43 +02:00
Patrick Walther 3e59992889 FIX: [ti wl18xx firmware]: integrate conf bin file
BugzId: 67860
BugzId: 79548
(cherry picked from commit d5a234c67e)
(cherry picked from commit abba375663)
2022-06-20 10:29:14 +02:00
Patrick Walther 08f0114f64 FIX: [hosapd/wpa-supplicant] use branch main to find correct commit ID while fetching sources
BugzId: 77740
(cherry picked from commit 3852801829)
2022-02-02 10:30:31 +01:00
5 changed files with 28 additions and 1 deletions

View File

@ -14,7 +14,7 @@ inherit pkgconfig
PACKAGECONFIG = "openssl"
SRC_URI = "git://w1.fi/hostap.git;protocol=http \
SRC_URI = "git://w1.fi/hostap.git;protocol=http;branch=main \
file://wpa_supplicant-full.config \
file://hostapd-full.config \
file://src/utils/build_features.h \

View File

@ -0,0 +1,24 @@
From 8498d0b205d26cd858a348b263438cf5b2e55254 Mon Sep 17 00:00:00 2001
From: Patrick Walther <patrick.walther@netmodule.com>
Date: Tue, 7 Jun 2022 11:15:34 +0200
Subject: [PATCH] FIX STA info to as and to gate type
---
station.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/station.c b/station.c
index 7c96cfe..17bebc7 100644
--- a/station.c
+++ b/station.c
@@ -333,8 +333,8 @@ static int print_sta_handler(struct nl_msg *msg, void *arg)
[NL80211_STA_INFO_ACK_SIGNAL] = {.type = NLA_U8 },
[NL80211_STA_INFO_ACK_SIGNAL_AVG] = { .type = NLA_U8 },
[NL80211_STA_INFO_AIRTIME_LINK_METRIC] = { .type = NLA_U32 },
- [NL80211_STA_INFO_CONNECTED_TO_AS] = { .type = NLA_FLAG },
- [NL80211_STA_INFO_CONNECTED_TO_GATE] = { .type = NLA_FLAG },
+ [NL80211_STA_INFO_CONNECTED_TO_AS] = { .type = NLA_U8 },
+ [NL80211_STA_INFO_CONNECTED_TO_GATE] = { .type = NLA_U8 },
};
char *chain;
struct timeval now;

View File

@ -19,6 +19,7 @@ SRC_URI = "http://www.kernel.org/pub/software/network/iw/${BP}.tar.xz \
file://401-wlan-indoor-channel.patch \
file://402-show-ant-gain.patch \
file://403-clockbootime.patch \
file://404-fix-sta-info-to-as-and-to-gate-type.patch \
"
SRC_URI[sha256sum] = "293a07109aeb7e36267cf59e3ce52857e9ffae3a6666eb8ac77894b1839fe1f2"

View File

@ -10,6 +10,7 @@ NO_GENERIC_LICENSE[Firmware-ti-wl18xx]="LICENCE"
SRC_URI += " \
git://git.ti.com/wilink8-wlan/wl18xx_fw.git \
file://nm-wl18xx-TIInit_11.8.32.bts \
file://wl18xx-conf.bin \
"
SRCREV = "bda5304cc86e9c4029f8101394d2a8b39c640f53"
@ -19,6 +20,7 @@ S = "${WORKDIR}/git"
do_install () {
install -d ${D}${nonarch_base_libdir}/firmware/ti-connectivity/
install -m 0644 wl18xx-fw-4.bin ${D}${nonarch_base_libdir}/firmware/ti-connectivity/wl18xx-fw-4.bin
install -m 0644 ${WORKDIR}/wl18xx-conf.bin ${D}${nonarch_base_libdir}/firmware/ti-connectivity/wl18xx-conf.bin
install -m 0644 ${WORKDIR}/nm-wl18xx-TIInit_11.8.32.bts ${D}${nonarch_base_libdir}/firmware/ti-connectivity/TIInit_11.8.32.bts
}