2006-08-01 19:44:24 +00:00
|
|
|
#
|
2012-06-09 23:33:44 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-08-01 19:44:24 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ethtool
|
2012-07-16 22:33:05 +00:00
|
|
|
PKG_VERSION:=3.4.1
|
2010-07-18 07:55:41 +00:00
|
|
|
PKG_RELEASE:=1
|
2006-08-01 19:44:24 +00:00
|
|
|
|
2012-06-09 23:33:44 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2011-04-03 18:10:36 +00:00
|
|
|
PKG_SOURCE_URL:=@KERNEL/software/network/ethtool
|
2012-07-16 22:33:05 +00:00
|
|
|
PKG_MD5SUM:=f1be2ba9d9d3fa1ba65ba634c529eef5
|
2006-08-01 19:44:24 +00:00
|
|
|
|
2010-02-13 01:11:24 +00:00
|
|
|
PKG_INSTALL:=1
|
2011-04-03 18:10:36 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2010-02-13 01:11:24 +00:00
|
|
|
|
2006-08-01 19:44:24 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ethtool
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Display or change ethernet card settings
|
2011-04-03 18:10:36 +00:00
|
|
|
URL:=http://www.kernel.org/pub/software/network/ethtool/
|
2006-08-01 19:44:24 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/ethtool/description
|
2011-04-03 18:10:36 +00:00
|
|
|
ethtool is a small utility for examining and tuning your ethernet-based
|
2012-06-09 23:33:44 +00:00
|
|
|
network interface
|
2010-07-18 07:55:41 +00:00
|
|
|
endef
|
|
|
|
|
2006-08-01 19:44:24 +00:00
|
|
|
define Package/ethtool/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2012-06-09 23:33:44 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ethtool $(1)/usr/sbin
|
2006-08-01 19:44:24 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ethtool))
|