Repository : ssh://git@open-mesh.org/openwrt-feed-devel
On branch : master
commit d647521259d7160de79bc33cb0b0002a558e0d6b Author: Sven Eckelmann sven@narfation.org Date: Sun Oct 7 13:20:30 2018 +0200
batman-adv-devel: Fix search for cfg80211 module symbols
The Module.symvers with the exported symbols of all other kernel modules in OpenWrt is usually placed in the main source directory of the package. But the actual sources for batman-adv are found in net/batman-adv. OpenWrt must therefore be informed to move it to this subdirectory or otherwise modpost will fail to find the symbols
WARNING: "cfg80211_get_station" [.../batman-adv-2018.3/net/batman-adv-devel/batman-adv.ko] undefined!
The dependency will then be missing in the .modinfo depends= option and thus it the kernel module loader will not correctly load the cfg80211.ko during bootup.
Signed-off-by: Sven Eckelmann sven@narfation.org
d647521259d7160de79bc33cb0b0002a558e0d6b batman-adv-devel/Makefile | 1 + 1 file changed, 1 insertion(+)
diff --git a/batman-adv-devel/Makefile b/batman-adv-devel/Makefile index 286a86f..108885b 100644 --- a/batman-adv-devel/Makefile +++ b/batman-adv-devel/Makefile @@ -17,6 +17,7 @@ PKG_BATMAN_DIR:=batman-adv-$(PKG_BATMAN_SHORTREV) PKG_SOURCE_URL:=https://git.open-mesh.org/snapshot/ PKG_SOURCE:=$(PKG_BATMAN_FNAME) PKG_LICENSE:=GPL-2.0 +PKG_EXTMOD_SUBDIRS=net/batman-adv
STAMP_CONFIGURED_DEPENDS := $(STAGING_DIR)/usr/include/mac80211-backport/backport/autoconf.h