35 lines
762 B
Makefile
35 lines
762 B
Makefile
#
|
|
# Download realtek r8168 linux driver from official site:
|
|
# [https://www.realtek.com/Download/List?cate_id=584]
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=r8168
|
|
PKG_VERSION:=8.054.00
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/r8168
|
|
TITLE:=Driver for Realtek r8168 chipsets
|
|
SUBMENU:=Network Devices
|
|
DEPENDS:=@PCI_SUPPORT
|
|
FILES:= $(PKG_BUILD_DIR)/r8168.ko
|
|
AUTOLOAD:=$(call AutoProbe,r8168)
|
|
CONFLICTS:=kmod-r8169
|
|
endef
|
|
|
|
define Package/r8168/description
|
|
This package contains a driver for Realtek r8168 chipsets.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(KERNEL_MAKE) M=$(PKG_BUILD_DIR) modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,r8168))
|