mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
8208d36220
r8168, r8125 and r8126 have been transferred from https://github.com/noltari to https://github.com/openwrt. The old URL should still work after the transfer, but let's update it anyway. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
34 lines
828 B
Makefile
34 lines
828 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=r8168
|
|
PKG_VERSION:=8.053.00
|
|
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:=52f1e6200672b598a04d4ac21ac92a8a9e128b38208c7b03a464bfa93bbfcc8f
|
|
|
|
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
|
|
FILES:=$(PKG_BUILD_DIR)/src/r8168.ko
|
|
AUTOLOAD:=$(call AutoProbe,r8168)
|
|
PROVIDES:=kmod-r8169
|
|
endef
|
|
|
|
define Build/Compile
|
|
+$(KERNEL_MAKE) $(PKG_JOBS) \
|
|
M="$(PKG_BUILD_DIR)/src" \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,r8168))
|