mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 16:36:16 +02:00
add ethtool
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3372 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
294c9e8c0e
commit
9fd67b2db5
@ -69,6 +69,7 @@ source "package/dsniff/Config.in"
|
|||||||
source "package/ebtables/Config.in"
|
source "package/ebtables/Config.in"
|
||||||
source "package/elhttp/Config.in"
|
source "package/elhttp/Config.in"
|
||||||
source "package/ether-wake/Config.in"
|
source "package/ether-wake/Config.in"
|
||||||
|
source "package/ethtool/Config.in"
|
||||||
source "package/ez-ipupdate/Config.in"
|
source "package/ez-ipupdate/Config.in"
|
||||||
source "package/fping/Config.in"
|
source "package/fping/Config.in"
|
||||||
source "package/fprobe/Config.in"
|
source "package/fprobe/Config.in"
|
||||||
|
9
openwrt/package/ethtool/Config.in
Normal file
9
openwrt/package/ethtool/Config.in
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
config BR2_PACKAGE_ETHTOOL
|
||||||
|
prompt "ethtool........................... Display or change ethernet card settings"
|
||||||
|
tristate
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
ethtool is used for querying settings of an ethernet device and changing them
|
||||||
|
|
||||||
|
http://sourceforge.net/projects/gkernel/
|
||||||
|
|
63
openwrt/package/ethtool/Makefile
Normal file
63
openwrt/package/ethtool/Makefile
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
# $Id: Makefile 2230 2005-10-22 12:12:59Z nbd $
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=ethtool
|
||||||
|
PKG_VERSION:=3
|
||||||
|
PKG_RELEASE:=0
|
||||||
|
PKG_MD5SUM:=b4e71f7fa2629250677eefcb338442c5
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=@SF/gkernel
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,ETHTOOL,ethtool,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
);
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_ETHTOOL):
|
||||||
|
install -d -m0755 $(IDIR_ETHTOOL)/usr/sbin
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(IDIR_ETHTOOL)/usr/sbin
|
||||||
|
$(RSTRIP) $(IDIR_ETHTOOL)
|
||||||
|
$(IPKG_BUILD) $(IDIR_ETHTOOL) $(PACKAGE_DIR)
|
4
openwrt/package/ethtool/ipkg/ethtool.control
Normal file
4
openwrt/package/ethtool/ipkg/ethtool.control
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Package: ethtool
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Description: Display or change ethernet card settings
|
Loading…
Reference in New Issue
Block a user