mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
2f846a3315
Like other Ethernet drivers, print link speed and duplex mode when the interface is up. Formatting output at the same time. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
34 lines
841 B
Makefile
34 lines
841 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=r8168
|
|
PKG_VERSION:=8.053.00
|
|
PKG_RELEASE:=2
|
|
|
|
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 +kmod-libphy
|
|
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))
|