mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
243a7256c1
Make use of KERNEL_MAKE in kernel packages were easily possible. This moves some more code to common places and reduces the number of lines. It is defined like this: KERNEL_MAKE = $(MAKE) $(KERNEL_MAKEOPTS) KERNEL_MAKEOPTS = -C $(LINUX_DIR) $(KERNEL_MAKE_FLAGS) Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ltq-vectoring
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://gitlab.com/prpl-foundation/intel/ppa_drv.git
|
|
PKG_SOURCE_DATE:=2019-05-20
|
|
PKG_SOURCE_VERSION:=4fa7ac30fcc8ec4eddae9debba5f4230981f469f
|
|
PKG_MIRROR_HASH:=444eb823dd9ddd25453976bf7a3230955e4148b8bf92f35f165ecffee32c4555
|
|
PKG_LICENSE:=GPL-2.0 BSD-2-Clause
|
|
|
|
MAKE_PATH:=src/vectoring
|
|
PKG_EXTMOD_SUBDIRS:=$(MAKE_PATH)
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/ltq-vectoring
|
|
SECTION:=sys
|
|
CATEGORY:=Kernel modules
|
|
SUBMENU:=Network Devices
|
|
TITLE:=driver for sending vectoring error samples
|
|
DEPENDS:=@TARGET_lantiq_xrx200
|
|
FILES:=$(PKG_BUILD_DIR)/$(MAKE_PATH)/ltq_vectoring.ko
|
|
AUTOLOAD:=$(call AutoLoad,49,ltq_vectoring)
|
|
endef
|
|
|
|
define Package/ltq-vectoring/description
|
|
This driver is responsible for sending error reports to the vectoring
|
|
control entity, which is required for downstream vectoring to work.
|
|
|
|
The error reports are generated by the DSL firmware, and passed to this
|
|
driver by the MEI driver.
|
|
endef
|
|
|
|
define KernelPackage/ltq-vectoring-test
|
|
SECTION:=sys
|
|
CATEGORY:=Kernel modules
|
|
SUBMENU:=Network Devices
|
|
TITLE:=driver for testing the vectoring driver
|
|
DEPENDS:=@TARGET_lantiq_xrx200 +kmod-ltq-vectoring
|
|
FILES:=$(PKG_BUILD_DIR)/$(MAKE_PATH)/ltq_vectoring_test.ko
|
|
endef
|
|
|
|
define Package/ltq-vectoring-test/description
|
|
This allows to send dummy data to the vectoring error block callback.
|
|
This is only needed for test and development purposes.
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
+$(KERNEL_MAKE) $(PKG_JOBS) \
|
|
M="$(PKG_BUILD_DIR)/$(MAKE_PATH)" \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,ltq-vectoring))
|
|
$(eval $(call KernelPackage,ltq-vectoring-test))
|