36 lines
998 B
Makefile
36 lines
998 B
Makefile
#
|
|
# Download realtek r8152 linux driver from official site:
|
|
# [https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-usb-3-0-software]
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=r8152
|
|
PKG_VERSION:=2.16.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/usb-net-rtl8152-vendor
|
|
TITLE:=Kernel module for USB-to-Ethernet Realtek convertors
|
|
SUBMENU:=USB Support
|
|
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
|
DEPENDS:=+kmod-usb-net
|
|
FILES:= $(PKG_BUILD_DIR)/r8152.ko
|
|
AUTOLOAD:=$(call AutoProbe,r8152)
|
|
CONFLICTS:=kmod-usb-net-rtl8152
|
|
endef
|
|
|
|
define KernelPackage/usb-net-rtl8152-vendor/description
|
|
Kernel module for Realtek RTL8152/RTL8153 Based USB Ethernet Adapters
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(KERNEL_MAKE) M=$(PKG_BUILD_DIR) modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,usb-net-rtl8152-vendor))
|