From d15af9ff7c534853695a52bb94f07beb4ffec02a Mon Sep 17 00:00:00 2001 From: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> Date: Mon, 4 Oct 2021 23:30:48 +0800 Subject: [PATCH] r8152-vendor: only enabled for x86 targets Ref: https://github.com/coolsnowwolf/lede/pull/8007#issuecomment-936127147 We do not welcome these unfriendly friendlyarm users. Btw, these projects like "Fusion xxx" often confused me who is the original author. --- package/lean/r8152/Makefile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/package/lean/r8152/Makefile b/package/lean/r8152/Makefile index b0f44a034..da66898e8 100644 --- a/package/lean/r8152/Makefile +++ b/package/lean/r8152/Makefile @@ -1,8 +1,7 @@ -#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) +# +# 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 @@ -17,17 +16,17 @@ PKG_HASH:=dc8a06ed6ff397029c396a7e83476f1bf9541c4f927a4dbac8810c6ce014f8ca PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/realtek-$(PKG_NAME)-linux-$(PKG_VERSION) -PKG_MAINTAINER:=Tianling Shen - PKG_BUILD_PARALLEL:=1 +PKG_MAINTAINER:=Tianling Shen + 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 + DEPENDS:=@TARGET_x86 +kmod-usb-net CONFLICTS:=kmod-usb-net-rtl8152 FILES:= $(PKG_BUILD_DIR)/r8152.ko AUTOLOAD:=$(call AutoProbe,r8152)