Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/routing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/alfred
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2019-08-01 18:37:03 +0300
committerSven Eckelmann <sven@narfation.org>2019-08-01 18:43:45 +0300
commita74938ea46b5d9959de63e20c0356acca50a0426 (patch)
treef07bc8015d3cc7ae62ef597fa3a3ab2d6b35d49d /alfred
parent89bcb4b22f0eb8f4eef87cd66d6f3507e7ef832a (diff)
alfred: upgrade package to latest release 2019.3
* avoid some kernel deprecation warning by using more generic netlink over sysfs Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'alfred')
-rw-r--r--alfred/Makefile4
-rw-r--r--alfred/patches/0001-alfred-vis-Add-missing-include-for-ifinfomsg.patch21
2 files changed, 23 insertions, 2 deletions
diff --git a/alfred/Makefile b/alfred/Makefile
index 2982265..aa43b67 100644
--- a/alfred/Makefile
+++ b/alfred/Makefile
@@ -8,9 +8,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=alfred
-PKG_VERSION:=2019.2
+PKG_VERSION:=2019.3
PKG_RELEASE:=0
-PKG_HASH:=b656f0e9a97a99c7531b6d49ebfd663451c16cdd275bbf7d48ff8daed3880bf2
+PKG_HASH:=a4c37920de497701680abb55c49cdcd11e4e7135e0e7e79259c35492a3df4766
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://downloads.open-mesh.org/batman/releases/batman-adv-$(PKG_VERSION)
diff --git a/alfred/patches/0001-alfred-vis-Add-missing-include-for-ifinfomsg.patch b/alfred/patches/0001-alfred-vis-Add-missing-include-for-ifinfomsg.patch
new file mode 100644
index 0000000..3a982b8
--- /dev/null
+++ b/alfred/patches/0001-alfred-vis-Add-missing-include-for-ifinfomsg.patch
@@ -0,0 +1,21 @@
+From: Sven Eckelmann <sven@narfation.org>
+Date: Thu, 1 Aug 2019 15:54:32 +0200
+Subject: alfred: vis: Add missing include for ifinfomsg
+
+Fixes: 0fc6e6674428 ("alfred: vis: Retrieve hardif status via generic netlink")
+Signed-off-by: Sven Eckelmann <sven@narfation.org>
+
+Origin: upstream, https://git.open-mesh.org/alfred.git/commit/ce26453bd72829ac9561acd8d3a06a3937341687
+
+diff --git a/vis/vis.c b/vis/vis.c
+index 947456343125458845f26dc38b53f18d6fd42d75..8df3056612d5da3678603a6e6430923c0c86cde0 100644
+--- a/vis/vis.c
++++ b/vis/vis.c
+@@ -10,6 +10,7 @@
+ #include <dirent.h>
+ #include <errno.h>
+ #include <getopt.h>
++#include <linux/rtnetlink.h>
+ #include <net/if.h>
+ #include <netinet/in.h>
+ #include <signal.h>