6820059edc
I have just released version 3.2.1 of the pciutils. It's purely a maintenance release with a couple of minor bug fixes and minor improvements. Thus quoth the changelog: 2013-11-10 Martin Mares <mj@ucw.cz> * Released as 3.2.1. * CardBus bridge capabilities are displayed. * PCIe L1 PM substates are decoded. * Various bugs were fixed in decoding of PCIe capabilities. * The sysfs back-end does not spit out unnecessary warnings when empty slots report only a partial device address. This actually happens on IBM pSeries. * Updated pci.ids to the today's snapshot of the database. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
77 lines
1.9 KiB
Makefile
77 lines
1.9 KiB
Makefile
################################################################################
|
|
#
|
|
# pciutils
|
|
#
|
|
################################################################################
|
|
|
|
PCIUTILS_VERSION = 3.2.1
|
|
PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci
|
|
PCIUTILS_INSTALL_STAGING = YES
|
|
PCIUTILS_LICENSE = GPLv2+
|
|
PCIUTILS_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
PCIUTILS_ZLIB=yes
|
|
PCIUTILS_DEPENDENCIES += zlib
|
|
else
|
|
PCIUTILS_ZLIB=no
|
|
endif
|
|
PCIUTILS_DNS=no
|
|
PCIUTILS_SHARED=yes
|
|
|
|
# Build after busybox since it's got a lightweight lspci
|
|
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/' \
|
|
-e 's/uname -r/echo $(LINUX_HEADERS_VERSION)/' \
|
|
$(PCIUTILS_DIR)/lib/configure
|
|
$(SED) 's/^STRIP/#STRIP/' $(PCIUTILS_DIR)/Makefile
|
|
endef
|
|
|
|
define PCIUTILS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" \
|
|
HOST="$(KERNEL_ARCH)-linux" \
|
|
OPT="$(TARGET_CFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
RANLIB=$(TARGET_RANLIB) \
|
|
AR=$(TARGET_AR) \
|
|
-C $(PCIUTILS_DIR) \
|
|
SHARED=$(PCIUTILS_SHARED) \
|
|
ZLIB=$(PCIUTILS_ZLIB) \
|
|
DNS=$(PCIUTILS_DNS) \
|
|
LIBKMOD=$(PCIUTILS_KMOD) \
|
|
PREFIX=/usr
|
|
endef
|
|
|
|
# Ditch install-lib if SHARED is an option in the future
|
|
define PCIUTILS_INSTALL_TARGET_CMDS
|
|
$(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
|
|
SHARED=$(PCIUTILS_SHARED) install install-lib
|
|
endef
|
|
|
|
define PCIUTILS_INSTALL_STAGING_CMDS
|
|
$(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(STAGING_DIR)/usr \
|
|
SHARED=$(PCIUTILS_SHARED) install install-lib
|
|
endef
|
|
|
|
|
|
# Library lacks +x so strip skips it
|
|
define PCIUTILS_FIX_LIBRARY_MODE
|
|
-chmod +x $(TARGET_DIR)/usr/lib/libpci.so*
|
|
endef
|
|
|
|
PCIUTILS_POST_INSTALL_TARGET_HOOKS += PCIUTILS_FIX_LIBRARY_MODE
|
|
|
|
$(eval $(generic-package))
|