usteer: update to latest git head

6813542 remote: always re-schedule update timeout
d7833e1 remote: fix compilation with glibc
bee2caf sta: schedule sta_info timeout on creation
ae32cb9 ubus: fix channel for active probing
8dc0753 ubus: introduce enum for beacon measurement mode
46e5976 policy: use correct reference signal
1116fdb policy: avoid creating kick loop for client
d3ff0d5 sta: add sta_connection_state enum
30f9ba7 remote: include node BSSID into messages
8af7b6c usteer: add BSSID to node struct

Signed-off-by: David Bauer <mail@david-bauer.net>
This commit is contained in:
David Bauer 2021-10-30 01:19:23 +02:00
parent 19596a013c
commit 63e2771140
2 changed files with 3 additions and 27 deletions

View File

@ -3,13 +3,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=usteer
PKG_SOURCE_DATE:=2021-09-21
PKG_SOURCE_VERSION:=fc1fadf5eb7684db952e72558f26dffbf3c4dfda
PKG_SOURCE_DATE:=2021-10-30
PKG_SOURCE_VERSION:=681354256fb334acfc7572be02afa21bde5094a1
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL=https://git.openwrt.org/project/usteer.git
PKG_MIRROR_HASH:=9bcd496a3416d2c805eff37df36b6a0564db6f40d44d7c0070962f01ee1d55d2
PKG_MIRROR_HASH:=b13fa1efa7ad8d3e1b05dc5c3ee1419b64d567a8620ac6bebc4c76a7f8be7964
PKG_MAINTAINER:=David Bauer <mail@david-bauer.net>
PKG_LICENSE:=GPL-2.0-only

View File

@ -1,24 +0,0 @@
From cacf1686db8adb4e7a35a85f0988c30ab5d96864 Mon Sep 17 00:00:00 2001
From: David Bauer <mail@david-bauer.net>
Date: Wed, 13 Oct 2021 00:13:48 +0200
Subject: [PATCH] usteer: fix missing struct definition
When compiling for targets using glibc, usteer compilation would fail
due to undefined struct in6_pktinfo. In this case, use the struct
definition provided by Linux UAPI.
Signed-off-by: David Bauer <mail@david-bauer.net>
---
remote.c | 6 ++++++
1 file changed, 6 insertions(+)
--- a/remote.c
+++ b/remote.c
@@ -17,6 +17,7 @@
* Copyright (C) 2020 John Crispin <john@phrozen.org>
*/
+#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>