summaryrefslogtreecommitdiffstats
path: root/package/pciutils
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2013-04-26 14:24:17 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-04-27 20:04:57 +0200
commit56e99deca7c242837dcfacc73dc2e3a0715d174d (patch)
tree6739ea187be61ba6a57bd5818c7019fd145a33e1 /package/pciutils
parent9978b3ed84b24d5fe69e7497a8f708bb5e1e0b32 (diff)
downloadbuildroot-novena-56e99deca7c242837dcfacc73dc2e3a0715d174d.tar.gz
buildroot-novena-56e99deca7c242837dcfacc73dc2e3a0715d174d.zip
pciutils: bump to version 3.2.0
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/pciutils')
-rw-r--r--package/pciutils/pciutils.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk
index 6219711ff..2cd10c0b5 100644
--- a/package/pciutils/pciutils.mk
+++ b/package/pciutils/pciutils.mk
@@ -4,7 +4,7 @@
#
#############################################################
-PCIUTILS_VERSION = 3.1.10
+PCIUTILS_VERSION = 3.2.0
PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci
PCIUTILS_INSTALL_STAGING = YES
PCIUTILS_LICENSE = GPLv2+
@@ -24,6 +24,13 @@ ifeq ($(BR2_PACKAGE_BUSYBOX),y)
PCIUTILS_DEPENDENCIES += busybox
endif
+ifeq ($(BR2_PACKAGE_KMOD),y)
+ PCIUTILS_DEPENDENCIES += kmod
+ PCIUTILS_KMOD = yes
+else
+ PCIUTILS_KMOD = no
+endif
+
define PCIUTILS_CONFIGURE_CMDS
$(SED) 's/wget --no-timestamping/wget/' $(PCIUTILS_DIR)/update-pciids.sh
$(SED) 's/uname -s/echo Linux/' \
@@ -43,6 +50,7 @@ define PCIUTILS_BUILD_CMDS
SHARED=$(PCIUTILS_SHARED) \
ZLIB=$(PCIUTILS_ZLIB) \
DNS=$(PCIUTILS_DNS) \
+ LIBKMOD=$(PCIUTILS_KMOD) \
PREFIX=/usr
endef