Changelog: https://github.com/openwrt/rtl8168/compare/8.055.00...8.056.02 Signed-off-by: Andy Chiang <AndyChiang_git@outlook.com> Link: https://github.com/openwrt/openwrt/pull/23201 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=r8168
|
|
PKG_VERSION:=8.056.02
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://github.com/openwrt/rtl8168/releases/download/$(PKG_VERSION)
|
|
PKG_HASH:=38c48129c41d1dc38681cb83e87c70bda12873384899d94ecc26bb79903829ce
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_LICENSE:=GPLv2
|
|
PKG_MAINTAINER:=Alvaro Fernandez Rojas <noltari@gmail.com>
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/r8168
|
|
SUBMENU:=Network Devices
|
|
TITLE:=Realtek RTL8168 PCI Gigabit Ethernet driver
|
|
DEPENDS:=@PCI_SUPPORT +kmod-libphy
|
|
FILES:=$(PKG_BUILD_DIR)/src/r8168.ko
|
|
AUTOLOAD:=$(call AutoProbe,r8168,1)
|
|
PROVIDES:=@kmod-r8169-any
|
|
VARIANT:=regular
|
|
endef
|
|
|
|
define KernelPackage/r8168-rss
|
|
$(call KernelPackage/r8168)
|
|
CONFLICTS:=kmod-r8168
|
|
TITLE+= (RSS)
|
|
VARIANT:=rss
|
|
endef
|
|
|
|
ifeq ($(BUILD_VARIANT),rss)
|
|
PKG_MAKE_FLAGS += \
|
|
ENABLE_MULTIPLE_TX_QUEUE=y \
|
|
ENABLE_RSS_SUPPORT=y
|
|
endif
|
|
|
|
define Build/Compile
|
|
+$(KERNEL_MAKE) $(PKG_JOBS) \
|
|
$(PKG_MAKE_FLAGS) \
|
|
M="$(PKG_BUILD_DIR)/src" \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,r8168))
|
|
$(eval $(call KernelPackage,r8168-rss))
|