blob: f432bc7d2f848fa55709456dd20ae1190e0b7654 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= ethtool
PKG_VERSION:= 4.16
PKG_RELEASE:= 1
PKG_HASH:= fe967a6722db2099fa63d847b6628e3e31cf9f53571a37503347dcc3e4015a03
PKG_DESCR:= display or change ethernet card settings
PKG_SECTION:= net/misc
PKG_SITES:= https://www.kernel.org/pub/software/network/ethtool/
include ${ADK_TOPDIR}/mk/package.mk
$(eval $(call PKG_template,ETHTOOL,ethtool,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
ethtool-install:
${INSTALL_DIR} ${IDIR_ETHTOOL}/usr/sbin
${INSTALL_BIN} ${WRKINST}/usr/sbin/ethtool \
${IDIR_ETHTOOL}/usr/sbin
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|