2003-01-18 22:27:22 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
2010-04-11 10:26:24 +02:00
|
|
|
# PCIUTILS
|
2003-01-18 22:27:22 +01:00
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2012-01-25 13:37:10 +01:00
|
|
|
PCIUTILS_VERSION = 3.1.9
|
2010-04-11 10:26:24 +02:00
|
|
|
PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci
|
2008-10-31 13:14:39 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
2010-04-11 10:26:24 +02:00
|
|
|
PCIUTILS_ZLIB=yes
|
2010-11-15 20:23:30 +01:00
|
|
|
PCIUTILS_DEPENDENCIES += zlib
|
2008-10-31 13:14:39 +01:00
|
|
|
else
|
2010-04-11 10:26:24 +02:00
|
|
|
PCIUTILS_ZLIB=no
|
2008-10-31 13:14:39 +01:00
|
|
|
endif
|
2010-04-11 10:26:24 +02:00
|
|
|
PCIUTILS_DNS=no
|
|
|
|
PCIUTILS_SHARED=yes
|
2008-10-31 13:14:39 +01:00
|
|
|
|
2011-10-15 05:07:26 +02:00
|
|
|
# Build after busybox since it's got a lightweight lspci
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
|
PCIUTILS_DEPENDENCIES += busybox
|
|
|
|
endif
|
|
|
|
|
2010-04-11 10:26:24 +02:00
|
|
|
define PCIUTILS_CONFIGURE_CMDS
|
2010-05-24 08:22:26 +02:00
|
|
|
$(SED) 's/wget --no-timestamping/wget/' $(PCIUTILS_DIR)/update-pciids.sh
|
2008-10-31 13:14:39 +01:00
|
|
|
$(SED) 's/uname -s/echo Linux/' \
|
|
|
|
-e 's/uname -r/echo $(LINUX_HEADERS_VERSION)/' \
|
|
|
|
$(PCIUTILS_DIR)/lib/configure
|
2010-05-06 16:24:36 +02:00
|
|
|
$(SED) 's/^STRIP/#STRIP/' $(PCIUTILS_DIR)/Makefile
|
2010-04-11 10:26:24 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define PCIUTILS_BUILD_CMDS
|
|
|
|
$(MAKE) CC="$(TARGET_CC)" \
|
2010-05-06 16:24:36 +02:00
|
|
|
HOST="$(KERNEL_ARCH)-linux" \
|
2010-04-11 10:26:24 +02:00
|
|
|
OPT="$(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
|
|
RANLIB=$(TARGET_RANLIB) \
|
|
|
|
AR=$(TARGET_AR) \
|
|
|
|
-C $(PCIUTILS_DIR) \
|
|
|
|
SHARED=$(PCIUTILS_SHARED) \
|
|
|
|
ZLIB=$(PCIUTILS_ZLIB) \
|
|
|
|
DNS=$(PCIUTILS_DNS) \
|
2010-05-24 08:22:26 +02:00
|
|
|
PREFIX=/usr
|
2010-04-11 10:26:24 +02:00
|
|
|
endef
|
|
|
|
|
2010-05-06 16:24:36 +02:00
|
|
|
# Ditch install-lib if SHARED is an option in the future
|
2010-04-11 10:26:24 +02:00
|
|
|
define PCIUTILS_INSTALL_TARGET_CMDS
|
2011-01-10 14:47:23 +01:00
|
|
|
$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
|
|
|
|
SHARED=$(PCIUTILS_SHARED) install
|
|
|
|
$(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
|
|
|
|
SHARED=$(PCIUTILS_SHARED) install-lib
|
2010-04-11 10:26:24 +02:00
|
|
|
endef
|
|
|
|
|
2011-09-29 21:57:42 +02:00
|
|
|
$(eval $(call GENTARGETS))
|