rtpengine: fix Module.symvers handling 638/head
authorSebastian Kemper <sebastian_ml@gmx.net>
Sat, 20 Feb 2021 10:45:49 +0000 (11:45 +0100)
committerSebastian Kemper <sebastian_ml@gmx.net>
Sun, 18 Apr 2021 10:10:58 +0000 (12:10 +0200)
This sets PKG_EXTMOD_SUBDIRS so kernel.mk can find the rtpengine
Module.symvers file.

Also, this puts KERNEL_MAKE_FLAGS into the make flags used to compile
the kernel module. This way Module.symvers files of other modules are
made available, plus there is no need anymore to specify ARCH and
CROSS_COMPILE, as KERNEL_MAKE_FLAGS already takes care of that.

While updating make flags this also adds PKG_JOBS for completeness'
sake.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
net/rtpengine/Makefile

index 5d6966e2dfdf6a2757db8a39b460a182378549f8..e03169838f3ecc5ce7258c12a61a15516bd2c650 100644 (file)
@@ -31,6 +31,10 @@ PKG_BUILD_PARALLEL:=0
 
 PKG_BUILD_DEPENDS:=gperf/host
 
+# With below variable set, $(PKG_SYMVERS_DIR)/rtpengine.symvers gets generated
+# from kernel-module/Module.symvers.
+PKG_EXTMOD_SUBDIRS:=kernel-module
+
 include $(INCLUDE_DIR)/package.mk
 include $(INCLUDE_DIR)/nls.mk
 
@@ -239,10 +243,10 @@ define Build/Compile
 
 ifneq ($(CONFIG_PACKAGE_kmod-ipt-rtpengine),)
        RTPENGINE_VERSION=$(PKG_VERSION) $(MAKE) \
+               $(PKG_JOBS) \
                -C $(PKG_BUILD_DIR)/kernel-module \
                KSRC=$(LINUX_DIR) \
-               ARCH=$(LINUX_KARCH) \
-               CROSS_COMPILE=$(TARGET_CROSS)
+               $(KERNEL_MAKE_FLAGS)
 endif
 
 ifneq ($(CONFIG_PACKAGE_iptables-mod-rtpengine),)
@@ -262,8 +266,10 @@ endef
 define Build/InstallDev
 endef
 
-$(eval $(call BuildPackage,rtpengine-no-transcode))
+# KernelPackage calls need to go first, otherwise hooks like
+# collect_module_symvers won't get added.
 $(eval $(call KernelPackage,ipt-rtpengine))
+$(eval $(call BuildPackage,rtpengine-no-transcode))
 $(eval $(call BuildPackage,iptables-mod-rtpengine))
 $(eval $(call BuildPackage,rtpengine))
 $(eval $(call BuildPackage,rtpengine-recording))