summaryrefslogtreecommitdiffstats
path: root/package/pciutils
Commit message (Collapse)AuthorAgeFilesLines
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Convert headers to lower case when relevantAlexandre Belloni2013-06-061-1/+1
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: ensure cross-pkgconfig is usedPeter Korsgaard2013-04-291-1/+1
| | | | | | | | For build with libkmod. Fixes http://autobuild.buildroot.net/results/70cdca5c5a41a14277c616fba3a58d8aa5fa5a2c/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: bump to version 3.2.0Gustavo Zacarias2013-04-271-1/+9
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: work around race condition in make install with high BR2_JLEVELPeter Korsgaard2012-12-171-2/+2
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352 make install and install-lib can race against eachother causing 'install' to fail. Work around it using MAKE1. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: add license infoArnout Vandecappelle (Essensium/Mind)2012-11-141-0/+3
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pciutils: bump to version 3.1.10Gustavo Zacarias2012-06-301-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: simplifyPeter Korsgaard2012-06-111-6/+2
| | | | | | No need for two seperate make invocations for installation. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: install headers and libraries in STAGING_DIRThomas Petazzoni2012-06-111-0/+8
| | | | | | | | There are some tools, like flashrom, that build against libraries of pciutils. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: bump versionPeter Korsgaard2012-01-251-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: bump to version 3.1.8 and other fixesGustavo Zacarias2011-10-152-4/+6
| | | | | | | | | | | Bump to pciutils version 3.1.8 Also make it build after busybox because it's got a lightweight lspci whereas the full-blown is preferred. Ditch the pci.ids skeleton comment since it's been shipped for some time now. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from GENTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: SHARED make opt goes for install tooGustavo Zacarias2011-01-101-2/+4
| | | | | | | | | | | | If we don't pass SHARED when installing we miss the shared library symlinks (libpci.so & libpci.so.3). On internal and external toolchains that have a proper cross ldconfig this isn't a problem as they get created during ldconfig, but it breaks on toolchains that lack a cross ldconfig to automagically make the symlinks. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: compilation failed with zlib enabled because it lacks a dependencyStanislav Bogatyrev2010-11-191-0/+1
| | | | | | | Closes #2797 Signed-off-by: Stanislav Bogatyrev <realloc@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: get rid of ".. has no inherent support for AVR32" commentsPeter Korsgaard2010-10-041-3/+0
| | | | | | | | | These are probaly out of date by now, and lack of special handling for avr32 doesn't mean that a package won't work on avr32, so remove them. Done by sed -i '/comment.*no inherent support for AVR32/{N;N;p}' Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: fix access to pci.ids and make update-pciids work with busybox wgetPeter Korsgaard2010-05-241-1/+2
| | | | | | | | | | | | | | | | | | Closes #1819 Fix two issues with pciutils: - pciutils would look in /usr/share/misc for pci.ids, but install it in /usr/share. This is because pciutils doesn't use a ./configure script, so we have to also provide the configuration (make) arguments when we run make install as well. Fix it by making it look into /usr/share as that's simpler to do, and is what upstream does. - the update-pciids script would call wget with the --no-timestamping option, which isn't supported by busybox wget. Fix it by simply removing that option as it isn't really critical. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: Fix cross compilingGustavo Zacarias2010-05-062-0/+7
| | | | | | | Closes #1705 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: convert to the generic-tools infrastructureThomas Brandstetter2010-04-151-68/+28
| | | | | Signed-off-by: Thomas Brandstetter <thomas.brandstetter@me.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: fix build with external toolchainsThomas Petazzoni2009-08-021-1/+1
| | | | | | | | | | | Buildroot Makefile to compile pciutils wasn't passing TARGET_LDFLAGS to pciutils build system. Therefore, at link time, the pciutils build system was not taking into account the important --sysroot option, which was breaking the link with external toolchains. Fixes bug #523. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pciutils: fix HOST detectionPeter Korsgaard2009-03-091-0/+1
|
* Add help for packages without AVR32 supportUlf Samuelsson2009-01-261-0/+3
|
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-2/+2
|
* * Fix format of the pciutils pci.ids.gz data fileNigel Kukard2009-01-021-1/+3
| | | | - If ZLIB is present the filename of pci.ids is changed to pci.ids.gz but its not compressed, add a compressor to ensure its gzipped
* * Removed duplicate PCIUTILS_VERSIONNigel Kukard2009-01-011-2/+1
| | | | * When installing pci.ids[.gz] the -D means create all components leading up, using $(@D) does not include the filename, the last directory component is then /usr/share. pci.ids[.gz] is therefore created as /usr/share/misc (misc being the filename). Using $@ fixes this, the directory path is created and the file is installed as /usr/share/misc/pci.ids[.gz] .
* * By default pciutils build of libpci.a uses the host ar/ranlib, force the ↵Nigel Kukard2009-01-011-1/+1
| | | | use of the target tools
* package/: remove more 'default n' (see r22874)Peter Korsgaard2008-11-021-1/+0
|
* pciutils may depend on zlib. Based on Bernhard's git repository.Thiago A. Corrêa2008-10-311-1/+1
|
* Improve pciutils based on Bernhard Reutner-Fischer's git repository ↵Thiago A. Corrêa2008-10-313-25/+29
| | | | (http://repo.or.cz/w/buildroot.git?a=tree;f=package/pciutils;hb=HEAD). Thanks
* Fix bug #0005884 - pciutils depends on zlibThiago A. Corrêa2008-10-312-1/+2
|
* Minor cleanups. Use touch for stamp-filesThiago A. Corrêa2008-10-311-2/+2
|
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-1/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* * Bump pciutils versionNigel Kukard2008-04-081-1/+1
|
* - bump version to 2.2.6Bernhard Reutner-Fischer2007-08-212-68/+4
|
* Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson2007-07-111-3/+3
|
* - set PREFIX and SHAREDIR properBernhard Reutner-Fischer2006-12-051-2/+4
|
* - add and use BR2_BZCAT config option.Bernhard Reutner-Fischer2006-11-171-2/+2
|
* - use $(ZCAT) as configured by the user instead of hardcoded 'zcat' that may ↵Bernhard Reutner-Fischer2006-10-011-1/+1
| | | | | | not exist; Closes #971 Silly, unchecked sed -i -e "/[^b]zcat/s/zcat/\$\(ZCAT\)/g" $(svngrep "[^b]zcat" * -rl | grep -v Config.in)
* use the correct pci.id name as pointed out by kostja in Bug 629Mike Frysinger2006-01-091-1/+1
|
* dont run uname and crap to figure out build stuff Bug 219 by kkMike Frysinger2005-09-291-3/+50
|
* be a bit more consistant with naming, always escape wildcardsEric Andersen2005-06-241-1/+1
|
* There is no need to have a separate 'Makefile.in' file in theEric Andersen2005-02-102-3/+8
| | | | | general case, therefore, combine the toplevel Makefile options such as setting TARGETS into the per-package *.mk file
* pciutils doesn't like 'make -j'Eric Andersen2004-12-111-1/+1
|
* help textMike Frysinger2004-10-141-4/+4
|
* Make the TAR_VERBOSITY option a bit more saneEric Andersen2004-10-091-1/+1
|
* use $(TAR_VERBOSITY)Mike Frysinger2004-10-091-1/+1
|
* final step in buildroot faceliftEric Andersen2004-10-092-0/+11
|
* facelift step number twoEric Andersen2004-10-092-1/+30
|
* Remove the old 'make' directory, and populate the new 'package'Eric Andersen2004-10-091-0/+52
directory.