Compare commits
3 Commits
master
...
NBSW_4.6.0
| Author | SHA1 | Date |
|---|---|---|
|
|
6c6bd3ab21 | |
|
|
3e59992889 | |
|
|
08f0114f64 |
|
|
@ -14,7 +14,7 @@ inherit pkgconfig
|
||||||
|
|
||||||
PACKAGECONFIG = "openssl"
|
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://wpa_supplicant-full.config \
|
||||||
file://hostapd-full.config \
|
file://hostapd-full.config \
|
||||||
file://src/utils/build_features.h \
|
file://src/utils/build_features.h \
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
@ -19,6 +19,7 @@ SRC_URI = "http://www.kernel.org/pub/software/network/iw/${BP}.tar.xz \
|
||||||
file://401-wlan-indoor-channel.patch \
|
file://401-wlan-indoor-channel.patch \
|
||||||
file://402-show-ant-gain.patch \
|
file://402-show-ant-gain.patch \
|
||||||
file://403-clockbootime.patch \
|
file://403-clockbootime.patch \
|
||||||
|
file://404-fix-sta-info-to-as-and-to-gate-type.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI[sha256sum] = "293a07109aeb7e36267cf59e3ce52857e9ffae3a6666eb8ac77894b1839fe1f2"
|
SRC_URI[sha256sum] = "293a07109aeb7e36267cf59e3ce52857e9ffae3a6666eb8ac77894b1839fe1f2"
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -10,6 +10,7 @@ NO_GENERIC_LICENSE[Firmware-ti-wl18xx]="LICENCE"
|
||||||
SRC_URI += " \
|
SRC_URI += " \
|
||||||
git://git.ti.com/wilink8-wlan/wl18xx_fw.git \
|
git://git.ti.com/wilink8-wlan/wl18xx_fw.git \
|
||||||
file://nm-wl18xx-TIInit_11.8.32.bts \
|
file://nm-wl18xx-TIInit_11.8.32.bts \
|
||||||
|
file://wl18xx-conf.bin \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRCREV = "bda5304cc86e9c4029f8101394d2a8b39c640f53"
|
SRCREV = "bda5304cc86e9c4029f8101394d2a8b39c640f53"
|
||||||
|
|
@ -19,6 +20,7 @@ S = "${WORKDIR}/git"
|
||||||
do_install () {
|
do_install () {
|
||||||
install -d ${D}${nonarch_base_libdir}/firmware/ti-connectivity/
|
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 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
|
install -m 0644 ${WORKDIR}/nm-wl18xx-TIInit_11.8.32.bts ${D}${nonarch_base_libdir}/firmware/ti-connectivity/TIInit_11.8.32.bts
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue