forked from pool/pciutils
This commit is contained in:
commit
4596a85af9
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
pci.ids.bz2
Normal file
3
pci.ids.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e15c41ae071075cfe2cb9f38bee6768a98350a9bef6d17caa3ad7c38314b983
|
||||
size 112474
|
11
pciutils-2.2.4-class.diff
Normal file
11
pciutils-2.2.4-class.diff
Normal file
@ -0,0 +1,11 @@
|
||||
--- lib/names.c
|
||||
+++ lib/names.c
|
||||
@@ -478,7 +478,7 @@
|
||||
return format_name_pair(buf, size, flags, v, d, numbuf);
|
||||
case PCI_LOOKUP_CLASS:
|
||||
icls = va_arg(args, int);
|
||||
- sprintf(numbuf, "%04x", icls);
|
||||
+ sprintf(numbuf, "Class %04x", icls);
|
||||
cls = id_lookup(a, ID_SUBCLASS, icls >> 8, icls & 0xff, 0, 0);
|
||||
if (!cls && (cls = id_lookup(a, ID_CLASS, icls >> 8, 0, 0, 0)))
|
||||
{
|
32
pciutils-2.2.4-noabort.diff
Normal file
32
pciutils-2.2.4-noabort.diff
Normal file
@ -0,0 +1,32 @@
|
||||
--- lspci.c
|
||||
+++ lspci.c
|
||||
@@ -64,6 +64,9 @@
|
||||
#define alloca xmalloc
|
||||
#endif
|
||||
|
||||
+/* error return val */
|
||||
+static int error = 0;
|
||||
+
|
||||
/* Our view of the PCI bus */
|
||||
|
||||
struct device {
|
||||
@@ -120,8 +123,10 @@
|
||||
d->config = xmalloc(64);
|
||||
d->present = xmalloc(64);
|
||||
memset(d->present, 1, 64);
|
||||
- if (!pci_read_block(p, 0, d->config, 64))
|
||||
- die("Unable to read the standard configuration space header");
|
||||
+ if (!pci_read_block(p, 0, d->config, 64)) {
|
||||
+ fprintf (stderr, "Unable to read the standard configuration space header\n");
|
||||
+ error++; return d;
|
||||
+ }
|
||||
if ((d->config[PCI_HEADER_TYPE] & 0x7f) == PCI_HEADER_TYPE_CARDBUS)
|
||||
{
|
||||
/* For cardbus bridges, we need to fetch 64 bytes more to get the
|
||||
@@ -2401,5 +2406,5 @@
|
||||
}
|
||||
pci_cleanup(pacc);
|
||||
|
||||
- return 0;
|
||||
+ return (error? 2: 0);
|
||||
}
|
11
pciutils-2.2.4-strip.diff
Normal file
11
pciutils-2.2.4-strip.diff
Normal file
@ -0,0 +1,11 @@
|
||||
--- Makefile
|
||||
+++ Makefile
|
||||
@@ -58,7 +58,7 @@
|
||||
install: all
|
||||
# -c is ignored on Linux, but required on FreeBSD
|
||||
$(DIRINSTALL) -m 755 $(DESTDIR)$(SBINDIR) $(DESTDIR)$(IDSDIR) $(DESTDIR)$(MANDIR)/man8
|
||||
- $(INSTALL) -c -m 755 -s lspci setpci $(DESTDIR)$(SBINDIR)
|
||||
+ $(INSTALL) -c -m 755 lspci setpci $(DESTDIR)$(SBINDIR)
|
||||
$(INSTALL) -c -m 755 update-pciids $(DESTDIR)$(SBINDIR)
|
||||
$(INSTALL) -c -m 644 $(PCI_IDS) $(DESTDIR)$(IDSDIR)
|
||||
$(INSTALL) -c -m 644 lspci.8 setpci.8 update-pciids.8 $(DESTDIR)$(MANDIR)/man8
|
3
pciutils-2.2.4.tar.gz
Normal file
3
pciutils-2.2.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:62fc07f688c6d17f0cf8baa540e42be6117530360c2df491ec02031973506a9f
|
||||
size 210706
|
341
pciutils.changes
Normal file
341
pciutils.changes
Normal file
@ -0,0 +1,341 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 13 21:57:37 CEST 2006 - aj@suse.de
|
||||
|
||||
- Fix to build (remove pci.ids.gz as well).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 13 16:46:31 CEST 2006 - mjancar@suse.cz
|
||||
|
||||
- update to 2.2.4
|
||||
* many bugfixes and cleanups
|
||||
- branch separate package for pci.ids
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 22 21:44:38 CEST 2006 - schwab@suse.de
|
||||
|
||||
- Don't strip binaries.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 22 18:53:40 CET 2006 - kukuk@suse.de
|
||||
|
||||
- Remove pciids-suse patch (has to be fixed upstream)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 22 15:55:54 CET 2006 - kukuk@suse.de
|
||||
|
||||
- Auto-Update pci.ids
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 21:39:18 CET 2006 - mls@suse.de
|
||||
|
||||
- converted neededforbuild to BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 20 17:31:27 CET 2006 - mjancar@suse.cz
|
||||
|
||||
- update pci.ids (#144200)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 13 18:55:11 CET 2006 - mjancar@suse.cz
|
||||
|
||||
- reintroduce "Class" printed in numeric output (#143042)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 19 16:07:09 CET 2005 - mjancar@suse.cz
|
||||
|
||||
- update to 2.2.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 26 14:45:58 CEST 2005 - mjancar@suse.cz
|
||||
|
||||
- add types.h to pciutils-devel (#113294)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 24 17:06:55 CEST 2005 - mjancar@suse.cz
|
||||
|
||||
- update to 2.1.99-test9 (#98896)
|
||||
- update pci.ids (#104381)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 14 19:30:46 CET 2005 - mjancar@suse.cz
|
||||
|
||||
- fix non-ascii characters in pci.ids (#72345)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 5 15:59:31 CET 2005 - schwab@suse.de
|
||||
|
||||
- Fix syntax error in pci.ids.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 22 16:49:29 CET 2005 - mjancar@suse.cz
|
||||
|
||||
- fix sysfs parsing (#63326)
|
||||
- update pci.ids
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 17 13:58:38 CEST 2004 - tcrhak@suse.cz
|
||||
|
||||
- updated pci.ids to the latest snapshot (fixes bug #45370)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 27 17:29:03 CEST 2004 - tcrhak@suse.cz
|
||||
|
||||
- changed "SGI IO9/IO10 Gigabit Ethernet (Copper)"
|
||||
to "SGI IO9/IO10 Gigabit Ethernet (Copper)" (bug #40175)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 28 18:39:22 CEST 2004 - tcrhak@suse.cz
|
||||
|
||||
- updated pci.ids
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 04 16:42:41 CET 2004 - tcrhak@suse.cz
|
||||
|
||||
- some pci.ids fixes:
|
||||
* changed SubDevice of Dell Inspiron 2100 internal modem (bug #32842)
|
||||
* added 1291 - Auxiliary Diva Serial Port (bug #31984)
|
||||
* added PCI IDs for InfiniBand HCAs (bug #34928)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 15:21:39 CET 2004 - tcrhak@suse.cz
|
||||
|
||||
- added support for domains to device filter (lspci -s, setpci -s)
|
||||
(fixes bug #33382, patch sysfs-filter)
|
||||
- updated pci.ids
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 29 22:04:02 CET 2003 - olh@suse.de
|
||||
|
||||
- use default owner for pciutils-devel files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 5 23:42:49 CET 2003 - olh@suse.de
|
||||
|
||||
- remove pcimodules again, it doesnt do anything right
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 28 15:38:02 CET 2003 - olh@suse.de
|
||||
|
||||
- add patch for 2.6 /proc/bus/pci layout
|
||||
http://ftp.linux.org.uk/pub/linux/willy/patches/pciutils-sysfs.diff
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 08 17:17:01 CEST 2003 - tcrhak@suse.cz
|
||||
|
||||
- added pcimodules [bug #31953]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 25 13:38:15 CEST 2003 - tcrhak@suse.cz
|
||||
|
||||
- updated pci.ids to the latest version from http://pciids.sourceforge.net
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 18 19:09:22 CET 2003 - tcrhak@suse.cz
|
||||
|
||||
- fixed NIC PCI IDs for Compaq [bug #22795],
|
||||
patch pciids.diff
|
||||
- also included the diff for the latest pci.ids
|
||||
into the patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 15 18:41:51 CET 2003 - tcrhak@suse.cz
|
||||
|
||||
- fixed install paths
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 06 17:45:42 CET 2003 - tcrhak@suse.cz
|
||||
|
||||
- update to version 2.1.11
|
||||
- updated pci.ids to the latest version from http://pciids.sourceforge.net
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 17 17:34:28 CEST 2002 - ro@suse.de
|
||||
|
||||
- removed bogus self-provides
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 6 09:16:58 CEST 2002 - olh@suse.de
|
||||
|
||||
- update description of pcnet32 cards (#18892)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 29 18:03:12 CEST 2002 - tcrhak@suse.cz
|
||||
|
||||
- updated pci.ids to latest version from http://pciids.sourceforge.net
|
||||
this version contains entries needed by Hammer systems (bug #17549)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 8 18:49:10 CEST 2002 - olh@suse.de
|
||||
|
||||
- the acenic gigabit card can be either fibre or utp
|
||||
update pci.ids entry (#17502)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 30 12:43:59 CEST 2002 - tcrhak@suse.cz
|
||||
|
||||
- updated to version 2.1.10
|
||||
- updated pci.ids to latest version from http://pciids.sourceforge.net
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 26 16:59:31 CET 2002 - tcrhak@suse.cz
|
||||
|
||||
- updated pci.ids to latest version from http://pciids.sourceforge.net
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 18 12:26:48 CET 2002 - tcrhak@suse.cz
|
||||
|
||||
- used macros %{_lib} and %{_libdir}
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 8 16:52:05 CET 2002 - schwab@suse.de
|
||||
|
||||
- Fix warnings.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 17 19:03:03 CET 2001 - tcrhak@suse.cz
|
||||
|
||||
- updated pciutils to 2.1.9
|
||||
- updated pci.ids to latest version from
|
||||
http://pciids.sourceforge.net/
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 12 11:58:52 CET 2001 - grimmer@suse.de
|
||||
|
||||
- updated pci.ids to latest version from
|
||||
http://pciids.sourceforge.net/
|
||||
- added pci.ids.bz2 as a separate source file and removed
|
||||
pci.ids.add.dif (now included upstream)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 24 11:55:25 CEST 2001 - grimmer@suse.de
|
||||
|
||||
- added some missing PCI IDs for LSI Logic Fibre Channel
|
||||
controllers to pci.ids.add.diff
|
||||
- corrected typos in pci.ids (Fiber Channel -> Fibre Channel)
|
||||
- added LSI Logic Inc. to vendor ID 0x1000
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 19 13:57:53 CEST 2001 - grimmer@suse.de
|
||||
|
||||
- added some missing PCI IDs for Compaq NICs to pci.ids.add.diff
|
||||
see [#8918] for the list
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 10 14:57:02 CEST 2001 - grimmer@suse.de
|
||||
|
||||
- corrected some Intel NIC entries upon request from Intel
|
||||
- merged pci.ids.riva.diff and the Intel changes in pci.ids.add.diff
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 3 23:10:00 MEST 2001 - garloff@suse.de
|
||||
|
||||
- Riva TnT corrections from snbarth:
|
||||
* The name of Riva TnT 128 is Riva TnT.
|
||||
* NVidia/SGS Joint Venture (12d2) never built TNT or later.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 29 19:52:28 CEST 2001 - grimmer@suse.de
|
||||
|
||||
- merged pci.ids.244ac6.diff and pci.ids.add.diff into a single
|
||||
patch (again named pci.ids.add.diff) and added some more PCI IDs
|
||||
collected by Dave Jones <davej@suse.de> from various sources,
|
||||
including the current pciutils CVS tree.
|
||||
- beautyfied the spec file a bit (added clean section and defattr
|
||||
in file list)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 21 23:46:12 CEST 2001 - poeml@suse.de
|
||||
|
||||
- add -devel subpackage
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 10 17:55:50 CEST 2001 - garloff@suse.de
|
||||
|
||||
- Merge pci.ids from 2.4.4ac6
|
||||
- bzip2 tarball
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 3 22:01:32 CEST 2001 - garloff@suse.de
|
||||
|
||||
- Also don't die on failing to read data of a normal device,
|
||||
just complain loudly (and return 2 in the end)
|
||||
- Updated pci.ids from linux-2.4.4 and added DFE-660.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 17 16:38:18 MET 2001 - garloff@suse.de
|
||||
|
||||
- Don't die on failure to read ext. cardbus data. [#5817]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 17 15:14:57 CET 2000 - garloff@suse.de
|
||||
|
||||
- Added pci.ids from linux-2.4.0-test12
|
||||
- Added pci.ids floating around (lkml, RH)
|
||||
- Added pci.ids for i820, ICH2/-M
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 18 10:39:42 CEST 2000 - schwab@suse.de
|
||||
|
||||
- Add `-Wno-format' to avoid spurious compile errors.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 18 01:48:51 CEST 2000 - ro@suse.de
|
||||
|
||||
- cleanup srcdir
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 12 00:43:53 CEST 2000 - olh@suse.de
|
||||
|
||||
- update to 2.1.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 24 18:05:42 CET 2000 - aj@suse.de
|
||||
|
||||
- update to 2.1.4, fix build problems with latest glibc, use patch
|
||||
for make file from Martin Mares.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 20 15:27:26 CET 2000 - aj@suse.de
|
||||
|
||||
- update to 2.1.3, /usr/man -> /usr/share/man
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 4 02:11:22 CET 2000 - ro@suse.de
|
||||
|
||||
- update to 2.1.2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 26 01:10:58 CEST 1999 - ro@suse.de
|
||||
|
||||
- fixed to compile on axp
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 23 16:24:29 CEST 1999 - ro@suse.de
|
||||
|
||||
- update to 2.1pre8 / using Buildroot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
||||
|
||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 20 13:13:44 MEST 1999 - ro@suse.de
|
||||
|
||||
- update to 2.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 31 11:59:55 MEST 1999 - bs@suse.de
|
||||
|
||||
- don't use lx_hack for build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 23 00:41:35 MET 1999 - ro@suse.de
|
||||
|
||||
- update to 1.10
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 26 00:29:55 MET 1998 - ro@suse.de
|
||||
|
||||
- created package, version 1.08
|
||||
|
253
pciutils.spec
Normal file
253
pciutils.spec
Normal file
@ -0,0 +1,253 @@
|
||||
#
|
||||
# spec file for package pciutils (Version 2.2.4)
|
||||
#
|
||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: pciutils
|
||||
Version: 2.2.4
|
||||
Release: 2
|
||||
%define ver 2.2.4
|
||||
Requires: pciutils-ids
|
||||
Autoreqprov: on
|
||||
Group: Hardware/Other
|
||||
License: GPL
|
||||
Summary: PCI-utilities for Kernel version 2.2 and newer
|
||||
URL: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml
|
||||
Source: ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{ver}.tar.gz
|
||||
Patch0: %{name}-%{ver}-class.diff
|
||||
Patch1: %{name}-%{ver}-noabort.diff
|
||||
Patch2: %{name}-%{ver}-strip.diff
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
lspci: This program displays detailed information about all PCI busses
|
||||
and devices in the system, replacing the original /proc/pci interface.
|
||||
|
||||
setpci: This program allows reading from and writing to PCI device
|
||||
configuration registers. For example, you can adjust the latency timers
|
||||
with it.
|
||||
|
||||
update-pciids: This program downloads the current version of the
|
||||
pci.ids file.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Martin Mares <mj@suse.cz>
|
||||
|
||||
%package devel
|
||||
Group: Development/Libraries/C and C++
|
||||
Summary: Static Library and Include Files of the PCI-utilities
|
||||
|
||||
%description devel
|
||||
This package contains the files that are necessary for software
|
||||
development using the PCI-utilities.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Martin Mares <mj@suse.cz>
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{ver}
|
||||
%patch0
|
||||
%patch1
|
||||
%patch2
|
||||
|
||||
%build
|
||||
make OPT="$RPM_OPT_FLAGS -Wall" PREFIX=%{_prefix} SBINDIR=/sbin
|
||||
|
||||
%install
|
||||
make install PREFIX=$RPM_BUILD_ROOT%{_prefix} SBINDIR=$RPM_BUILD_ROOT/sbin \
|
||||
ROOT=$RPM_BUILD_ROOT/ MANDIR=$RPM_BUILD_ROOT/%{_mandir}
|
||||
mkdir -p $RPM_BUILD_ROOT%{_libdir}
|
||||
mkdir -p $RPM_BUILD_ROOT%{_includedir}/pci
|
||||
cp -p lib/libpci.a $RPM_BUILD_ROOT%{_libdir}
|
||||
cp -p lib/{pci,header,config,types}.h $RPM_BUILD_ROOT%{_includedir}/pci/
|
||||
rm -rf $RPM_BUILD_ROOT%{_datadir}/pci.ids*
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc README
|
||||
%doc %{_mandir}/man?/*
|
||||
/sbin/*
|
||||
|
||||
%files devel
|
||||
%defattr(-, root, root)
|
||||
%{_includedir}/pci/
|
||||
%{_libdir}/libpci.a
|
||||
|
||||
%changelog -n pciutils
|
||||
* Fri Oct 13 2006 - aj@suse.de
|
||||
- Fix to build (remove pci.ids.gz as well).
|
||||
* Fri Oct 13 2006 - mjancar@suse.cz
|
||||
- update to 2.2.4
|
||||
* many bugfixes and cleanups
|
||||
- branch separate package for pci.ids
|
||||
* Mon May 22 2006 - schwab@suse.de
|
||||
- Don't strip binaries.
|
||||
* Wed Mar 22 2006 - kukuk@suse.de
|
||||
- Remove pciids-suse patch (has to be fixed upstream)
|
||||
* Wed Mar 22 2006 - kukuk@suse.de
|
||||
- Auto-Update pci.ids
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Fri Jan 20 2006 - mjancar@suse.cz
|
||||
- update pci.ids (#144200)
|
||||
* Fri Jan 13 2006 - mjancar@suse.cz
|
||||
- reintroduce "Class" printed in numeric output (#143042)
|
||||
* Mon Dec 19 2005 - mjancar@suse.cz
|
||||
- update to 2.2.1
|
||||
* Fri Aug 26 2005 - mjancar@suse.cz
|
||||
- add types.h to pciutils-devel (#113294)
|
||||
* Wed Aug 24 2005 - mjancar@suse.cz
|
||||
- update to 2.1.99-test9 (#98896)
|
||||
- update pci.ids (#104381)
|
||||
* Mon Mar 14 2005 - mjancar@suse.cz
|
||||
- fix non-ascii characters in pci.ids (#72345)
|
||||
* Sat Mar 05 2005 - schwab@suse.de
|
||||
- Fix syntax error in pci.ids.
|
||||
* Tue Feb 22 2005 - mjancar@suse.cz
|
||||
- fix sysfs parsing (#63326)
|
||||
- update pci.ids
|
||||
* Fri Sep 17 2004 - tcrhak@suse.cz
|
||||
- updated pci.ids to the latest snapshot (fixes bug #45370)
|
||||
* Thu May 27 2004 - tcrhak@suse.cz
|
||||
- changed "SGI IO9/IO10 Gigabit Ethernet (Copper)"
|
||||
to "SGI IO9/IO10 Gigabit Ethernet (Copper)" (bug #40175)
|
||||
* Wed Apr 28 2004 - tcrhak@suse.cz
|
||||
- updated pci.ids
|
||||
* Thu Mar 04 2004 - tcrhak@suse.cz
|
||||
- some pci.ids fixes:
|
||||
* changed SubDevice of Dell Inspiron 2100 internal modem (bug #32842)
|
||||
* added 1291 - Auxiliary Diva Serial Port (bug #31984)
|
||||
* added PCI IDs for InfiniBand HCAs (bug #34928)
|
||||
* Tue Feb 24 2004 - tcrhak@suse.cz
|
||||
- added support for domains to device filter (lspci -s, setpci -s)
|
||||
(fixes bug #33382, patch sysfs-filter)
|
||||
- updated pci.ids
|
||||
* Sat Nov 29 2003 - olh@suse.de
|
||||
- use default owner for pciutils-devel files
|
||||
* Wed Nov 05 2003 - olh@suse.de
|
||||
- remove pcimodules again, it doesnt do anything right
|
||||
* Tue Oct 28 2003 - olh@suse.de
|
||||
- add patch for 2.6 /proc/bus/pci layout
|
||||
http://ftp.linux.org.uk/pub/linux/willy/patches/pciutils-sysfs.diff
|
||||
* Wed Oct 08 2003 - tcrhak@suse.cz
|
||||
- added pcimodules [bug #31953]
|
||||
* Mon Aug 25 2003 - tcrhak@suse.cz
|
||||
- updated pci.ids to the latest version from http://pciids.sourceforge.net
|
||||
* Tue Feb 18 2003 - tcrhak@suse.cz
|
||||
- fixed NIC PCI IDs for Compaq [bug #22795],
|
||||
patch pciids.diff
|
||||
- also included the diff for the latest pci.ids
|
||||
into the patch
|
||||
* Wed Jan 15 2003 - tcrhak@suse.cz
|
||||
- fixed install paths
|
||||
* Mon Jan 06 2003 - tcrhak@suse.cz
|
||||
- update to version 2.1.11
|
||||
- updated pci.ids to the latest version from http://pciids.sourceforge.net
|
||||
* Tue Sep 17 2002 - ro@suse.de
|
||||
- removed bogus self-provides
|
||||
* Fri Sep 06 2002 - olh@suse.de
|
||||
- update description of pcnet32 cards (#18892)
|
||||
* Thu Aug 29 2002 - tcrhak@suse.cz
|
||||
- updated pci.ids to latest version from http://pciids.sourceforge.net
|
||||
this version contains entries needed by Hammer systems (bug #17549)
|
||||
* Thu Aug 08 2002 - olh@suse.de
|
||||
- the acenic gigabit card can be either fibre or utp
|
||||
update pci.ids entry (#17502)
|
||||
* Tue Jul 30 2002 - tcrhak@suse.cz
|
||||
- updated to version 2.1.10
|
||||
- updated pci.ids to latest version from http://pciids.sourceforge.net
|
||||
* Tue Mar 26 2002 - tcrhak@suse.cz
|
||||
- updated pci.ids to latest version from http://pciids.sourceforge.net
|
||||
* Fri Jan 18 2002 - tcrhak@suse.cz
|
||||
- used macros %%{_lib} and %%{_libdir}
|
||||
* Tue Jan 08 2002 - schwab@suse.de
|
||||
- Fix warnings.
|
||||
* Mon Dec 17 2001 - tcrhak@suse.cz
|
||||
- updated pciutils to 2.1.9
|
||||
- updated pci.ids to latest version from
|
||||
http://pciids.sourceforge.net/
|
||||
* Wed Dec 12 2001 - grimmer@suse.de
|
||||
- updated pci.ids to latest version from
|
||||
http://pciids.sourceforge.net/
|
||||
- added pci.ids.bz2 as a separate source file and removed
|
||||
pci.ids.add.dif (now included upstream)
|
||||
* Mon Sep 24 2001 - grimmer@suse.de
|
||||
- added some missing PCI IDs for LSI Logic Fibre Channel
|
||||
controllers to pci.ids.add.diff
|
||||
- corrected typos in pci.ids (Fiber Channel -> Fibre Channel)
|
||||
- added LSI Logic Inc. to vendor ID 0x1000
|
||||
* Wed Sep 19 2001 - grimmer@suse.de
|
||||
- added some missing PCI IDs for Compaq NICs to pci.ids.add.diff
|
||||
see [#8918] for the list
|
||||
* Mon Sep 10 2001 - grimmer@suse.de
|
||||
- corrected some Intel NIC entries upon request from Intel
|
||||
- merged pci.ids.riva.diff and the Intel changes in pci.ids.add.diff
|
||||
* Mon Sep 03 2001 - garloff@suse.de
|
||||
- Riva TnT corrections from snbarth:
|
||||
* The name of Riva TnT 128 is Riva TnT.
|
||||
* NVidia/SGS Joint Venture (12d2) never built TNT or later.
|
||||
* Wed Aug 29 2001 - grimmer@suse.de
|
||||
- merged pci.ids.244ac6.diff and pci.ids.add.diff into a single
|
||||
patch (again named pci.ids.add.diff) and added some more PCI IDs
|
||||
collected by Dave Jones <davej@suse.de> from various sources,
|
||||
including the current pciutils CVS tree.
|
||||
- beautyfied the spec file a bit (added clean section and defattr
|
||||
in file list)
|
||||
* Mon May 21 2001 - poeml@suse.de
|
||||
- add -devel subpackage
|
||||
* Thu May 10 2001 - garloff@suse.de
|
||||
- Merge pci.ids from 2.4.4ac6
|
||||
- bzip2 tarball
|
||||
* Thu May 03 2001 - garloff@suse.de
|
||||
- Also don't die on failing to read data of a normal device,
|
||||
just complain loudly (and return 2 in the end)
|
||||
- Updated pci.ids from linux-2.4.4 and added DFE-660.
|
||||
* Wed Jan 17 2001 - garloff@suse.de
|
||||
- Don't die on failure to read ext. cardbus data. [#5817]
|
||||
* Sun Dec 17 2000 - garloff@suse.de
|
||||
- Added pci.ids from linux-2.4.0-test12
|
||||
- Added pci.ids floating around (lkml, RH)
|
||||
- Added pci.ids for i820, ICH2/-M
|
||||
* Mon Sep 18 2000 - schwab@suse.de
|
||||
- Add `-Wno-format' to avoid spurious compile errors.
|
||||
* Fri Aug 18 2000 - ro@suse.de
|
||||
- cleanup srcdir
|
||||
* Mon Jun 12 2000 - olh@suse.de
|
||||
- update to 2.1.8
|
||||
* Mon Jan 24 2000 - aj@suse.de
|
||||
- update to 2.1.4, fix build problems with latest glibc, use patch
|
||||
for make file from Martin Mares.
|
||||
* Thu Jan 20 2000 - aj@suse.de
|
||||
- update to 2.1.3, /usr/man -> /usr/share/man
|
||||
* Tue Jan 04 2000 - ro@suse.de
|
||||
- update to 2.1.2
|
||||
* Tue Oct 26 1999 - ro@suse.de
|
||||
- fixed to compile on axp
|
||||
* Sat Oct 23 1999 - ro@suse.de
|
||||
- update to 2.1pre8 / using Buildroot
|
||||
* Mon Sep 13 1999 - bs@suse.de
|
||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
||||
* Thu May 20 1999 - ro@suse.de
|
||||
- update to 2.0
|
||||
* Wed Mar 31 1999 - bs@suse.de
|
||||
- don't use lx_hack for build
|
||||
* Tue Feb 23 1999 - ro@suse.de
|
||||
- update to 1.10
|
||||
* Thu Nov 26 1998 - ro@suse.de
|
||||
- created package, version 1.08
|
Loading…
x
Reference in New Issue
Block a user