mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 03:09:08 +08:00
7cf27d7190
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org> (cherry picked from commit f572aa98e8e76f17592a397037eb0e5c6632fbae)
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
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]
|
|
#Unpack source file
|
|
#Replace orginal Makefile with this file
|
|
#Put this source to 'package' folder of OpenWRT/LEDE SDK
|
|
#Build(make menuconfig, make defconfig, make)
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=r8152
|
|
PKG_VERSION:=2.16.3.20220914
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/wget/realtek-r8152-linux/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=61ed7af34c8882c6028ddd1a27bb78fb5bfba41211f84dd7a06e4dc84dbe9a9a
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/realtek-$(PKG_NAME)-linux-$(PKG_VERSION)
|
|
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
|
|
|
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
|
|
CONFLICTS:=kmod-usb-net-rtl8152
|
|
FILES:= $(PKG_BUILD_DIR)/r8152.ko
|
|
AUTOLOAD:=$(call AutoProbe,r8152)
|
|
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))
|