summaryrefslogtreecommitdiff
path: root/package/pciutils
AgeCommit message (Collapse)Author
2012-07-17all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)
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>
2012-06-30pciutils: bump to version 3.1.10Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-11pciutils: simplifyPeter Korsgaard
No need for two seperate make invocations for installation. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-11pciutils: install headers and libraries in STAGING_DIRThomas Petazzoni
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>
2012-01-25pciutils: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-15pciutils: bump to version 3.1.8 and other fixesGustavo Zacarias
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>
2011-09-29package: remove useless arguments from GENTARGETSThomas Petazzoni
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>
2011-01-10pciutils: SHARED make opt goes for install tooGustavo Zacarias
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>
2010-11-19pciutils: compilation failed with zlib enabled because it lacks a dependencyStanislav Bogatyrev
Closes #2797 Signed-off-by: Stanislav Bogatyrev <realloc@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-10-04package: get rid of ".. has no inherent support for AVR32" commentsPeter Korsgaard
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>
2010-05-24pciutils: fix access to pci.ids and make update-pciids work with busybox wgetPeter Korsgaard
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>
2010-05-06pciutils: Fix cross compilingGustavo Zacarias
Closes #1705 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-15pciutils: convert to the generic-tools infrastructureThomas Brandstetter
Signed-off-by: Thomas Brandstetter <thomas.brandstetter@me.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-09-03package: Remove unnecessary dependencies on uclibc.Will Newton
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>
2009-08-02pciutils: fix build with external toolchainsThomas Petazzoni
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>
2009-03-09pciutils: fix HOST detectionPeter Korsgaard
2009-01-26Add help for packages without AVR32 supportUlf Samuelsson
2009-01-16package/: convert to DOWNLOAD helperPeter Korsgaard
2009-01-02* Fix format of the pciutils pci.ids.gz data fileNigel Kukard
- 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
2009-01-01* Removed duplicate PCIUTILS_VERSIONNigel Kukard
* 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] .
2009-01-01* By default pciutils build of libpci.a uses the host ar/ranlib, force the ↵Nigel Kukard
use of the target tools
2008-11-02package/: remove more 'default n' (see r22874)Peter Korsgaard
2008-10-31pciutils may depend on zlib. Based on Bernhard's git repository.Thiago A. Corrêa
2008-10-31Improve pciutils based on Bernhard Reutner-Fischer's git repository ↵Thiago A. Corrêa
(http://repo.or.cz/w/buildroot.git?a=tree;f=package/pciutils;hb=HEAD). Thanks
2008-10-31Fix bug #0005884 - pciutils depends on zlibThiago A. Corrêa
2008-10-31Minor cleanups. Use touch for stamp-filesThiago A. Corrêa
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2008-04-08* Bump pciutils versionNigel Kukard
2007-08-21- bump version to 2.2.6Bernhard Reutner-Fischer
2007-07-11Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson
2006-12-05- set PREFIX and SHAREDIR properBernhard Reutner-Fischer
2006-11-17- add and use BR2_BZCAT config option.Bernhard Reutner-Fischer
2006-10-01- use $(ZCAT) as configured by the user instead of hardcoded 'zcat' that may ↵Bernhard Reutner-Fischer
not exist; Closes #971 Silly, unchecked sed -i -e "/[^b]zcat/s/zcat/\$\(ZCAT\)/g" $(svngrep "[^b]zcat" * -rl | grep -v Config.in)
2006-01-09use the correct pci.id name as pointed out by kostja in Bug 629Mike Frysinger
2005-09-29dont run uname and crap to figure out build stuff Bug 219 by kkMike Frysinger
2005-06-24be a bit more consistant with naming, always escape wildcardsEric Andersen
2005-02-10There is no need to have a separate 'Makefile.in' file in theEric Andersen
general case, therefore, combine the toplevel Makefile options such as setting TARGETS into the per-package *.mk file
2004-12-11pciutils doesn't like 'make -j'Eric Andersen
2004-10-14help textMike Frysinger
2004-10-09Make the TAR_VERBOSITY option a bit more saneEric Andersen
2004-10-09use $(TAR_VERBOSITY)Mike Frysinger
2004-10-09final step in buildroot faceliftEric Andersen
2004-10-09facelift step number twoEric Andersen
2004-10-09Remove the old 'make' directory, and populate the new 'package'Eric Andersen
directory.