mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
2ef79b536b
ChangeLog: 125b080 Release version 6.4. 5660918 update UAPI header copies f493e63 netlink: fix duplex setting b3e341c cmis: report LOL / LOS / Tx Fault 045d8db sff-8636: report LOL / LOS / Tx Fault a6505f3 drop checks for macros provided in UAPI header copies 86c0c41 do not check for strtol() function dd8e3ae actually check for C11 compiler 43e4d30 add local copies of macros from autoconf-archive faa4700 drop check for big endian types 31b7b5e Require a compiler with support for C11 features 946d18b update UAPI header copies eebf01f ethtool: Add support for configuring tx-push-buf-len 2782ea8 update UAPI header copies Signed-off-by: Nick Hainke <vincent@systemli.org>
69 lines
1.6 KiB
Makefile
69 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ethtool
|
|
PKG_VERSION:=6.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@KERNEL/software/network/ethtool
|
|
PKG_HASH:=5eaa083e8108e1dd3876b2c803a1942a2763942715b7f6eb916e189adbb44972
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:kernel:ethtool
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ethtool
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Display or change ethernet card settings
|
|
URL:=http://www.kernel.org/pub/software/network/ethtool/
|
|
VARIANT:=tiny
|
|
CONFLICTS:=ethtool-full
|
|
endef
|
|
|
|
define Package/ethtool-full
|
|
$(Package/ethtool)
|
|
TITLE += (full)
|
|
VARIANT:=full
|
|
PROVIDES:=ethtool
|
|
DEPENDS:=+libmnl
|
|
CONFLICTS:=
|
|
endef
|
|
|
|
define Package/ethtool/description
|
|
ethtool is a small utility for examining and tuning your ethernet-based
|
|
network interface
|
|
endef
|
|
|
|
Package/ethtool-full/description:=$(Package/ethtool/description)
|
|
|
|
ifeq ($(BUILD_VARIANT),full)
|
|
CONFIGURE_ARGS += --enable-netlink --enable-pretty-dump
|
|
else
|
|
CONFIGURE_ARGS += --disable-netlink --disable-pretty-dump
|
|
endif
|
|
|
|
define Package/ethtool/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ethtool $(1)/usr/sbin
|
|
endef
|
|
|
|
Package/ethtool-full/install=$(Package/ethtool/install)
|
|
|
|
$(eval $(call BuildPackage,ethtool))
|
|
$(eval $(call BuildPackage,ethtool-full))
|