|
From: <abe...@us...> - 2013-11-16 20:38:40
|
Revision: 6282
http://sourceforge.net/p/astlinux/code/6282
Author: abelbeck
Date: 2013-11-16 20:38:37 +0000 (Sat, 16 Nov 2013)
Log Message:
-----------
pciutils version bump to 3.2.1
Modified Paths:
--------------
branches/1.0/initrd.config
branches/1.0/package/pciutils/Config.in
branches/1.0/package/pciutils/pciutils.mk
Modified: branches/1.0/initrd.config
===================================================================
--- branches/1.0/initrd.config 2013-11-16 01:43:48 UTC (rev 6281)
+++ branches/1.0/initrd.config 2013-11-16 20:38:37 UTC (rev 6282)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6268-dirty Configuration
-# Wed Nov 13 09:15:27 2013
+# Buildroot 2011.08-svn6281-dirty Configuration
+# Sat Nov 16 14:15:32 2013
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -353,7 +353,6 @@
# BR2_PACKAGE_MTD is not set
# BR2_PACKAGE_NTFS_3G is not set
# BR2_PACKAGE_NTFSPROGS is not set
-# BR2_PACKAGE_PCIUTILS is not set
# BR2_PACKAGE_RNG_TOOLS is not set
# BR2_PACKAGE_SDPARM is not set
# BR2_PACKAGE_SETSERIAL is not set
Modified: branches/1.0/package/pciutils/Config.in
===================================================================
--- branches/1.0/package/pciutils/Config.in 2013-11-16 01:43:48 UTC (rev 6281)
+++ branches/1.0/package/pciutils/Config.in 2013-11-16 20:38:37 UTC (rev 6282)
@@ -1,5 +1,6 @@
config BR2_PACKAGE_PCIUTILS
bool "pciutils"
+ depends on BR2_LINUX_KERNEL
help
Various utilities dealing with the PCI bus.
Provides things like setpci and lspci.
Modified: branches/1.0/package/pciutils/pciutils.mk
===================================================================
--- branches/1.0/package/pciutils/pciutils.mk 2013-11-16 01:43:48 UTC (rev 6281)
+++ branches/1.0/package/pciutils/pciutils.mk 2013-11-16 20:38:37 UTC (rev 6282)
@@ -4,13 +4,16 @@
#
#############################################################
-PCIUTILS_VERSION = 3.1.10
+PCIUTILS_VERSION = 3.2.1
PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci
PCIUTILS_INSTALL_STAGING = YES
+# Depend on linux to define LINUX_VERSION_PROBED
+PCIUTILS_DEPENDENCIES = linux
PCIUTILS_ZLIB=no
PCIUTILS_DNS=no
PCIUTILS_SHARED=yes
+PCIUTILS_KMOD = no
# Build after busybox since it's got a lightweight lspci
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
@@ -20,7 +23,7 @@
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)/' \
+ -e 's/uname -r/echo $(LINUX_VERSION_PROBED)/' \
$(PCIUTILS_DIR)/lib/configure
$(SED) 's/^STRIP/#STRIP/' $(PCIUTILS_DIR)/Makefile
endef
@@ -36,6 +39,7 @@
SHARED=$(PCIUTILS_SHARED) \
ZLIB=$(PCIUTILS_ZLIB) \
DNS=$(PCIUTILS_DNS) \
+ LIBKMOD=$(PCIUTILS_KMOD) \
PREFIX=/usr
endef
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|