]> mj.ucw.cz Git - pciutils.git/log
pciutils.git
15 years agoLet the maintainer script use plain Git instead of Cogito.
Martin Mares [Sun, 9 Nov 2008 20:31:35 +0000 (21:31 +0100)]
Let the maintainer script use plain Git instead of Cogito.

15 years agoReleased as 3.0.3. v3.0.3
Martin Mares [Sun, 9 Nov 2008 20:28:42 +0000 (21:28 +0100)]
Released as 3.0.3.

15 years agoUpdated pci.ids to the current snapshot.
Martin Mares [Sun, 9 Nov 2008 20:19:47 +0000 (21:19 +0100)]
Updated pci.ids to the current snapshot.

15 years agoLet `lspci -k' display subsystem names.
Martin Mares [Sun, 9 Nov 2008 20:16:14 +0000 (21:16 +0100)]
Let `lspci -k' display subsystem names.

Several users have requested a `quick overview' mode that would display
everything needed to identify a device and its drivers. I believe that it
is better to extend the `-k' mode to include subsystems than to introduce
yet another mode.

15 years agoFixed building on Cygwin.
Martin Mares [Sun, 9 Nov 2008 19:50:58 +0000 (20:50 +0100)]
Fixed building on Cygwin.

It got broken by the introduction of WITH_LIBS.

Thanks to Steve Elliott for reporting that.

15 years agoDecode HT 1.02 in the same way as HT 1.03.
Carl-Daniel Hailfinger [Sun, 9 Nov 2008 19:49:09 +0000 (20:49 +0100)]
Decode HT 1.02 in the same way as HT 1.03.

AMD K8 processors claim that they're using HyperTransport 1.02, but the
publicly available documentation (specifically the BKDG) states that the
HT version is 1.03 in reality.

lspci will issue a warning "!!! Possibly incomplete decoding" and only
decode some basic HT properties for HT versions before 1.03.
Move that boundary down to HT version 1.02.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
15 years agoFix printing of PCIE AER capability.
Max Asbock [Sun, 9 Nov 2008 19:47:00 +0000 (20:47 +0100)]
Fix printing of PCIE AER capability.

The cap_aer function in lspci.c which prints PCIE AER capabilities
labels the uncorrected error mask incorrectly as "status" and it
also has some typos. This patch fixes that.

Signed-off-by: Max Asbock <masbock@linux.vnet.ibm.com>
15 years agoBetter support for cross-compiling.
Alon Bar-Lev [Sun, 9 Nov 2008 19:44:21 +0000 (20:44 +0100)]
Better support for cross-compiling.

It is difficult to cross compile pciutils, as the host is not standard 3 or 4 components and one need to pass all tools cross compile prefixes.

The attached patch makes it easier:

1. Add CROSS_COMPILE prefix for all toolchain tools. I also changed default CC
   to gcc, I can fix this if you like.

2. Allow parsing standard HOST, such as i686-pc-linux-gnu.

3. Make rel be RELEASE, maybe the whole release thing can be removed as it is
   not actually used.

Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
15 years agoFix spelling of MSI.
Martin Mares [Sun, 9 Nov 2008 19:40:08 +0000 (20:40 +0100)]
Fix spelling of MSI.

Change the spelling of 'Signalled' to 'Signaled' to match the PCI spec.
Report the capability as 'MSI' instead of either 'Message Signaled
Interrupts' to fit better with MSI-X and bring the width of this line
below 80 columns.

Inspired-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
15 years agoUpdated pci.ids to the today's snapshot from the new web interface.
Martin Mares [Mon, 13 Oct 2008 10:52:56 +0000 (12:52 +0200)]
Updated pci.ids to the today's snapshot from the new web interface.

15 years agoForgot to bump the version number. v3.0.2
Martin Mares [Fri, 19 Sep 2008 18:09:16 +0000 (20:09 +0200)]
Forgot to bump the version number.

15 years agoFixed a minor bug in lib/configure and released as 3.0.2.
Martin Mares [Fri, 19 Sep 2008 18:06:25 +0000 (20:06 +0200)]
Fixed a minor bug in lib/configure and released as 3.0.2.

15 years agoReleased as v3.0.1. v3.0.1
Martin Mares [Thu, 11 Sep 2008 20:23:23 +0000 (22:23 +0200)]
Released as v3.0.1.

15 years agoUpdated pci.ids to the most recent snapshot.
Martin Mares [Thu, 11 Sep 2008 20:14:33 +0000 (22:14 +0200)]
Updated pci.ids to the most recent snapshot.

15 years agoAdded a Cygwin port.
Martin Mares [Tue, 26 Aug 2008 15:10:20 +0000 (17:10 +0200)]
Added a Cygwin port.

Patch by Christopher Voltz, ported to the current tree by me.

15 years agoCall wget with --no-timestamping.
Martin Mares [Tue, 26 Aug 2008 15:06:23 +0000 (17:06 +0200)]
Call wget with --no-timestamping.

If --timestamping was set in .wgetrc, wget fails, because it is unable to
handle --timestamping and -O simultaneously (for no apparent reason, but
the maintainers have decided that this bug has graduated to a feature,
see https://savannah.gnu.org/bugs/?22896).

Thanks to Ville Skytta for pointing that out.

15 years agoUse the visibility attributes only when building a shared library.
Martin Mares [Tue, 26 Aug 2008 13:17:17 +0000 (15:17 +0200)]
Use the visibility attributes only when building a shared library.

Omair Eshkenazi has reported that libpci fails to build with gcc 3.x.
We require gcc 4.x for building shared libraries, but it should not
be needed when SHARED=no.

This patch changes internal.h to define PCI_ABI as the visibility
attribute only if we build a shared library.

However, this means that we need to know the configuration settings
before we include pci.h, so I had to include config.h explicitly
from internal.h and create a new symbol PCI_CONFIG_H to check whether
config.h has been already included.

15 years agolibresolv is not available on BSD systems, but they have resolver in libc.
Martin Mares [Tue, 26 Aug 2008 11:54:53 +0000 (13:54 +0200)]
libresolv is not available on BSD systems, but they have resolver in libc.

Suggested by Hasso Tepper.

15 years agoUse h_errno instead of _res.h_errno.
Martin Mares [Tue, 26 Aug 2008 11:54:26 +0000 (13:54 +0200)]
Use h_errno instead of _res.h_errno.

The latter is apparently not available on BSD.

Suggested by Hasso Tepper.

15 years agoFix printing the MSI capability.
Martin Mares [Tue, 26 Aug 2008 11:43:06 +0000 (13:43 +0200)]
Fix printing the MSI capability.

Contributed by Matthew Wilcox. His changelog says:

I'd like to present this change for your consideration.  I'm not sure
where the original idea comes from that MSI has a 'queue' of interrupts.
It has multiple independent interrupts.  Also, rather than just dumping
the raw values from the register, it makes sense to decode them into
the number of interrupts it supports.

15 years agoSingle Root I/O Virtualization capability support
Zhao, Yu [Thu, 3 Jul 2008 09:39:49 +0000 (17:39 +0800)]
Single Root I/O Virtualization capability support

Signed-off-by: Yu Zhao <yu.zhao@intel.com>
lib/header.h |   28 ++++++++++++++++++++++++++++
lspci.c      |   46 ++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 74 insertions(+)

15 years agoAlternative Routing-ID Interpretation capability support
Zhao, Yu [Thu, 3 Jul 2008 09:39:41 +0000 (17:39 +0800)]
Alternative Routing-ID Interpretation capability support

Signed-off-by: Yu Zhao <yu.zhao@intel.com>
lib/header.h |   11 +++++++++++
lspci.c      |   22 ++++++++++++++++++++++
2 files changed, 33 insertions(+)

15 years agoAccess Control Services capability support
Zhao, Yu [Thu, 3 Jul 2008 09:39:32 +0000 (17:39 +0800)]
Access Control Services capability support

Signed-off-by: Yu Zhao <yu.zhao@intel.com>
lib/header.h |   20 ++++++++++++++++++++
lspci.c      |   25 ++++++++++++++++++++++++-
2 files changed, 44 insertions(+), 1 deletion(-)

15 years agoAdvanced Error Reporting capability support
Zhao, Yu [Thu, 3 Jul 2008 09:39:23 +0000 (17:39 +0800)]
Advanced Error Reporting capability support

Signed-off-by: Yu Zhao <yu.zhao@intel.com>
lib/header.h |    5 ++++-
lspci.c      |   47 ++++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 50 insertions(+), 2 deletions(-)

15 years agoPCI Express Device, Link and Slot 2 capabilities support
Zhao, Yu [Thu, 3 Jul 2008 09:39:16 +0000 (17:39 +0800)]
PCI Express Device, Link and Slot 2 capabilities support

Signed-off-by: Yu Zhao <yu.zhao@intel.com>
lib/header.h |   22 +++++++
lspci.c      |  166 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 186 insertions(+), 2 deletions(-)

15 years agoAdded test cases for new PCIE capabilities.
Martin Mares [Tue, 26 Aug 2008 11:34:57 +0000 (13:34 +0200)]
Added test cases for new PCIE capabilities.

Contributed by Zhao Yu.

15 years agoLet filters accept vendor and device 0xffff.
Martin Mares [Tue, 26 Aug 2008 11:24:35 +0000 (13:24 +0200)]
Let filters accept vendor and device 0xffff.

Thanks to Sebastian Herbszt for a bug report.

15 years agoWe have a new linux-pci mailing list.
Martin Mares [Tue, 26 Aug 2008 11:20:39 +0000 (13:20 +0200)]
We have a new linux-pci mailing list.

15 years agoBy mistake, we were setting PCI_USE_DNS on Linux automatically.
Martin Mares [Tue, 26 Aug 2008 11:19:04 +0000 (13:19 +0200)]
By mistake, we were setting PCI_USE_DNS on Linux automatically.

Well spotted by Matthias Weidle.

16 years agoUpdated API and ABI version and released as 3.0.0. v3.0.0
Martin Mares [Thu, 10 Apr 2008 19:23:19 +0000 (21:23 +0200)]
Updated API and ABI version and released as 3.0.0.

16 years agoMerge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git#network
Martin Mares [Wed, 20 Feb 2008 11:18:19 +0000 (12:18 +0100)]
Merge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git#network

16 years agoDo not choke on file names containing spaces.
Martin Mares [Wed, 20 Feb 2008 11:18:10 +0000 (12:18 +0100)]
Do not choke on file names containing spaces.

16 years agoID domain names now end with `.pci'.
Martin Mares [Wed, 20 Feb 2008 10:53:00 +0000 (11:53 +0100)]
ID domain names now end with `.pci'.

16 years agoReleased as 2.99.1-alpha2.
Martin Mares [Wed, 20 Feb 2008 10:48:49 +0000 (11:48 +0100)]
Released as 2.99.1-alpha2.

16 years agoChanged the default domain for the DNS resolver.
Martin Mares [Wed, 20 Feb 2008 10:48:36 +0000 (11:48 +0100)]
Changed the default domain for the DNS resolver.

16 years agoReleased as 2.99.1-alpha1.
Martin Mares [Mon, 18 Feb 2008 20:39:39 +0000 (21:39 +0100)]
Released as 2.99.1-alpha1.

16 years agoAdded symbol versioning to the shared library.
Martin Mares [Mon, 18 Feb 2008 20:31:41 +0000 (21:31 +0100)]
Added symbol versioning to the shared library.

16 years agoWhen installing the shared library, create the appropriate symlinks as well.
Martin Mares [Mon, 18 Feb 2008 16:38:28 +0000 (17:38 +0100)]
When installing the shared library, create the appropriate symlinks as well.

16 years agoUse `libpci.so.X.Y.Z' instead of `libpci-X.Y.Z.so'.
Martin Mares [Mon, 18 Feb 2008 16:38:07 +0000 (17:38 +0100)]
Use `libpci.so.X.Y.Z' instead of `libpci-X.Y.Z.so'.

16 years agoChangelogged the build system changes.
Martin Mares [Sun, 17 Feb 2008 22:50:13 +0000 (23:50 +0100)]
Changelogged the build system changes.

16 years agoControl symbol exports in libpci.
Martin Mares [Sun, 17 Feb 2008 22:44:36 +0000 (23:44 +0100)]
Control symbol exports in libpci.

When building the shared library, default visibility of symbols has been
changed to hidden and public functions have been marked with PCI_ABI
which makes the symbol visible.

16 years agoAdded example to .gitignore.
Martin Mares [Sun, 17 Feb 2008 22:42:35 +0000 (23:42 +0100)]
Added example to .gitignore.

16 years agoExample: Add lookup of names.
Martin Mares [Sun, 17 Feb 2008 22:31:53 +0000 (23:31 +0100)]
Example: Add lookup of names.

16 years agoExample: Print device address including domain.
Martin Mares [Sun, 17 Feb 2008 22:28:52 +0000 (23:28 +0100)]
Example: Print device address including domain.

16 years agoExample: always print the base addresses as longs.
Martin Mares [Sun, 17 Feb 2008 22:28:02 +0000 (23:28 +0100)]
Example: always print the base addresses as longs.

16 years agoMoved the example program from lib/example.c to example.c.
Martin Mares [Sun, 17 Feb 2008 22:27:16 +0000 (23:27 +0100)]
Moved the example program from lib/example.c to example.c.

Also, include it in the default targets, so that we always check
that it builds correctly.

16 years agoIncluding config.mk twice is not necessary.
Martin Mares [Sun, 17 Feb 2008 22:23:38 +0000 (23:23 +0100)]
Including config.mk twice is not necessary.

(We do not expect lib/Makefile to be invoked separately anyway, so we can
rely on the top-level Makefile exporting all configuration settings.)

16 years agoAdded infrastructure for building libpci as a shared library.
Martin Mares [Sun, 17 Feb 2008 22:21:23 +0000 (23:21 +0100)]
Added infrastructure for building libpci as a shared library.

Use `make SHARED=yes' or `make SHARED=local' to enable this feature.
Restriction of symbol exports and symbol versioning will come soon.

16 years agoCleanup of the Makefile system.
Martin Mares [Sun, 17 Feb 2008 11:38:12 +0000 (12:38 +0100)]
Cleanup of the Makefile system.

Parameters of the configure script are passed from the top-level Makefile
in environment variables. DNS support has been made a regular build option
with an attempt at its auto-detection.

16 years agoEnable the i386-ports method on Linux/x86_64 as well.
Martin Mares [Sun, 17 Feb 2008 10:50:32 +0000 (11:50 +0100)]
Enable the i386-ports method on Linux/x86_64 as well.

16 years agoAdded ChangeLog for the all changes on the network branch.
Martin Mares [Sun, 17 Feb 2008 08:51:12 +0000 (09:51 +0100)]
Added ChangeLog for the all changes on the network branch.

16 years agoUnify usage of u8 vs. byte.
Martin Mares [Wed, 13 Feb 2008 19:26:14 +0000 (20:26 +0100)]
Unify usage of u8 vs. byte.

16 years agoThe automatic test for zlib searches in /usr/local/include, too.
Martin Mares [Wed, 13 Feb 2008 19:20:11 +0000 (20:20 +0100)]
The automatic test for zlib searches in /usr/local/include, too.

16 years agoUse <stdint.h> for precise integer types if the compiler claims C99 support.
Martin Mares [Wed, 13 Feb 2008 19:14:39 +0000 (20:14 +0100)]
Use <stdint.h> for precise integer types if the compiler claims C99 support.

16 years agoDo not forget pcilib.7 in `make uninstall'.
Martin Mares [Wed, 13 Feb 2008 18:57:08 +0000 (19:57 +0100)]
Do not forget pcilib.7 in `make uninstall'.

16 years agoAdded man pages to .gitignore.
Martin Mares [Wed, 13 Feb 2008 18:56:11 +0000 (19:56 +0100)]
Added man pages to .gitignore.

16 years agoLast few items from the DNS TODO list solved, releasing -net2.
Martin Mares [Wed, 13 Feb 2008 18:52:35 +0000 (19:52 +0100)]
Last few items from the DNS TODO list solved, releasing -net2.

16 years agoUse LDLIBS for all libraries on which libpci depends.
Martin Mares [Wed, 13 Feb 2008 16:58:20 +0000 (17:58 +0100)]
Use LDLIBS for all libraries on which libpci depends.

This way, libpci.pc gets all dependencies, including -lpci on NetBSD.
Clearing LDLIBS at the top of config.mk is necessary, because this file
can get read twice.

16 years agons_parserr() and friends are not portable, so implement our own trivial parser instead.
Martin Mares [Wed, 13 Feb 2008 16:51:50 +0000 (17:51 +0100)]
ns_parserr() and friends are not portable, so implement our own trivial parser instead.

I looked to the glibc source for inspiration and checked everything with
the RFC, so it is hopefully correct.

16 years agoCall res_init() only once.
Martin Mares [Wed, 13 Feb 2008 15:57:02 +0000 (16:57 +0100)]
Call res_init() only once.

This avoids perpetual re-reading of /etc/resolv.conf.

16 years agoThe `-s' (strip) option passed to `install' can be overriden by the STRIP variable.
Martin Mares [Wed, 13 Feb 2008 14:16:49 +0000 (15:16 +0100)]
The `-s' (strip) option passed to `install' can be overriden by the STRIP variable.

16 years agoDo not forget to create the man7 directory.
Martin Mares [Wed, 13 Feb 2008 14:15:06 +0000 (15:15 +0100)]
Do not forget to create the man7 directory.

16 years agoPush to the public GIT tree when releasing.
Martin Mares [Tue, 12 Feb 2008 11:42:41 +0000 (12:42 +0100)]
Push to the public GIT tree when releasing.

16 years agoBump the API version (the new API is not cast in stone yet, however).
Martin Mares [Tue, 12 Feb 2008 11:41:38 +0000 (12:41 +0100)]
Bump the API version (the new API is not cast in stone yet, however).

16 years agoMerge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git
Martin Mares [Tue, 12 Feb 2008 11:40:26 +0000 (12:40 +0100)]
Merge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git

(Merged with the 2.2.10 release.)

16 years agoReleased as 2.2.10.
Martin Mares [Tue, 12 Feb 2008 11:32:14 +0000 (12:32 +0100)]
Released as 2.2.10.

16 years agoUse `Device ABCD' instead of `Unknown device ABCD'.
Martin Mares [Tue, 12 Feb 2008 11:29:39 +0000 (12:29 +0100)]
Use `Device ABCD' instead of `Unknown device ABCD'.

Several Linux distributors mentioned users complaining about unsupported
devices when in fact the device was only unknown to the ID database.
This little `headological' trick tries to avoid encouraging the users
to such complaints :-)

16 years agoClean up freeing of the ID tables.
Martin Mares [Tue, 12 Feb 2008 11:25:34 +0000 (12:25 +0100)]
Clean up freeing of the ID tables.

16 years agoUpdated the README: mention DNS mode.
Martin Mares [Tue, 12 Feb 2008 11:20:55 +0000 (12:20 +0100)]
Updated the README: mention DNS mode.

16 years agoImproved man pages. Parts related to the library moved to pcilib(7).
Martin Mares [Tue, 12 Feb 2008 11:17:20 +0000 (12:17 +0100)]
Improved man pages. Parts related to the library moved to pcilib(7).

16 years agoTidy up help texts on usage.
Martin Mares [Tue, 12 Feb 2008 09:48:27 +0000 (10:48 +0100)]
Tidy up help texts on usage.

16 years agoThe `-P' option has been removed.
Martin Mares [Tue, 12 Feb 2008 09:31:25 +0000 (10:31 +0100)]
The `-P' option has been removed.

16 years agoAnnotate printf-like functions with format checking attributes.
Martin Mares [Tue, 12 Feb 2008 09:29:48 +0000 (10:29 +0100)]
Annotate printf-like functions with format checking attributes.

16 years agoAdded an option for selection of access methods.
Martin Mares [Tue, 12 Feb 2008 09:19:38 +0000 (10:19 +0100)]
Added an option for selection of access methods.

16 years agoIntroduced API for selection of access methods.
Martin Mares [Tue, 12 Feb 2008 09:19:19 +0000 (10:19 +0100)]
Introduced API for selection of access methods.

Access method names were normalized (they so far served only informational
purposes). Each access method gained a help text.

16 years agoReplaced the method_params array by library parameters.
Martin Mares [Tue, 12 Feb 2008 08:54:36 +0000 (09:54 +0100)]
Replaced the method_params array by library parameters.

This change is backward incompatible, but hopefully nobody used this
ill-thought interface.

16 years agoMoved functions related to parameters to params.c.
Martin Mares [Tue, 12 Feb 2008 08:41:40 +0000 (09:41 +0100)]
Moved functions related to parameters to params.c.

16 years agoRenamed `net.cache_path' to `net.cache_name', it's more logical.
Martin Mares [Tue, 12 Feb 2008 08:38:14 +0000 (09:38 +0100)]
Renamed `net.cache_path' to `net.cache_name', it's more logical.

16 years agoAdded options for setting of library parameters.
Martin Mares [Tue, 12 Feb 2008 08:37:25 +0000 (09:37 +0100)]
Added options for setting of library parameters.

16 years agoParameters now have help texts.
Martin Mares [Tue, 12 Feb 2008 08:37:03 +0000 (09:37 +0100)]
Parameters now have help texts.

16 years agoSettings of the resolving and caching mechanism are now passed as parameters.
Martin Mares [Tue, 12 Feb 2008 08:24:09 +0000 (09:24 +0100)]
Settings of the resolving and caching mechanism are now passed as parameters.

16 years agoAdded a simple infrastructure for setting of arbitrary parameters.
Martin Mares [Tue, 12 Feb 2008 08:06:27 +0000 (09:06 +0100)]
Added a simple infrastructure for setting of arbitrary parameters.

16 years agoMoved functions related to initialization and cleanup to init.c.
Martin Mares [Tue, 12 Feb 2008 07:48:11 +0000 (08:48 +0100)]
Moved functions related to initialization and cleanup to init.c.

16 years agoMore TODO.
Martin Mares [Mon, 11 Feb 2008 21:47:09 +0000 (22:47 +0100)]
More TODO.

16 years agoRemoved a forgotten merge conflict marker.
Martin Mares [Mon, 11 Feb 2008 21:07:48 +0000 (22:07 +0100)]
Removed a forgotten merge conflict marker.

16 years agoDocumented the DNS query switches.
Martin Mares [Mon, 11 Feb 2008 21:03:02 +0000 (22:03 +0100)]
Documented the DNS query switches.

16 years agoDie if DNS queries are requested, but not available.
Martin Mares [Mon, 11 Feb 2008 20:52:17 +0000 (21:52 +0100)]
Die if DNS queries are requested, but not available.

16 years agoWrites to the cache file are no longer racy.
Martin Mares [Mon, 11 Feb 2008 20:47:25 +0000 (21:47 +0100)]
Writes to the cache file are no longer racy.

16 years agoMerge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git
Martin Mares [Mon, 11 Feb 2008 20:30:08 +0000 (21:30 +0100)]
Merge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git

16 years agoAdded options for controlling the DNS query modes.
Martin Mares [Mon, 11 Feb 2008 20:28:11 +0000 (21:28 +0100)]
Added options for controlling the DNS query modes.

16 years agoMerge with git+ssh://master.kernel.org/pub/scm/utils/pciutils/pciutils.git
Martin Mares [Mon, 11 Feb 2008 20:15:30 +0000 (21:15 +0100)]
Merge with git+ssh://master.kernel.org/pub/scm/utils/pciutils/pciutils.git

16 years agoCleaned up the list of options.
Martin Mares [Mon, 11 Feb 2008 20:14:40 +0000 (21:14 +0100)]
Cleaned up the list of options.

16 years agoUse DNS on all architectures except AIX.
Martin Mares [Mon, 11 Feb 2008 20:10:49 +0000 (21:10 +0100)]
Use DNS on all architectures except AIX.

16 years agoMerge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git
Martin Mares [Mon, 11 Feb 2008 20:04:27 +0000 (21:04 +0100)]
Merge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git

16 years agoFixed a typo.
Martin Mares [Mon, 11 Feb 2008 20:04:24 +0000 (21:04 +0100)]
Fixed a typo.

16 years agoSplit handling of the ID list to several files.
Martin Mares [Mon, 11 Feb 2008 19:59:53 +0000 (20:59 +0100)]
Split handling of the ID list to several files.

16 years agoImplemented control options and the caching logic.
Martin Mares [Mon, 11 Feb 2008 18:45:21 +0000 (19:45 +0100)]
Implemented control options and the caching logic.

Everything is still in a very raw form.

16 years agoBSD needs <netinet/in.h>.
Martin Mares [Mon, 11 Feb 2008 16:22:50 +0000 (17:22 +0100)]
BSD needs <netinet/in.h>.

16 years agoMerge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git
Martin Mares [Mon, 11 Feb 2008 16:09:26 +0000 (17:09 +0100)]
Merge with git+ssh://git.ucw.cz/home/mj/GIT/pciutils.git

I have decided to drop the network-related changes from ChangeLog
to avoid merging conflicts.

16 years agoFixed a bug in displaying of zlib errors.
Martin Mares [Mon, 11 Feb 2008 16:07:32 +0000 (17:07 +0100)]
Fixed a bug in displaying of zlib errors.