import pciutils-3.7.0-5.el9
This commit is contained in:
commit
2b52454adb
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/pciutils-3.7.0.tar.xz
|
1
.pciutils.metadata
Normal file
1
.pciutils.metadata
Normal file
@ -0,0 +1 @@
|
||||
f7d6860ffe405b4ebb23b013866a64c9f80c2fa3 SOURCES/pciutils-3.7.0.tar.xz
|
9
SOURCES/multilibconfigh
Normal file
9
SOURCES/multilibconfigh
Normal file
@ -0,0 +1,9 @@
|
||||
#if defined(__x86_64__) || defined(__ia64__) || defined(__ppc64__) || defined(__powerpc64__) || defined(__s390x__) || defined(__aarch64__) || defined(__mips64)
|
||||
#include "config.lib64.h"
|
||||
#elif defined(__sparc__) && defined (__arch64__)
|
||||
#include "config.lib64.h"
|
||||
#elif defined(__i386__) || defined(__ppc__) || defined(__powerpc__) || defined(__s390__) || defined(__alpha__) || defined(__sparc__) || defined(__sh__) || defined(__arm__) || defined(__mips)
|
||||
#include "config.lib.h"
|
||||
#else
|
||||
#error Unknown Arch
|
||||
#endif
|
12
SOURCES/pciutils-2.2.1-idpath.patch
Normal file
12
SOURCES/pciutils-2.2.1-idpath.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -up pciutils-3.0.0/Makefile.idpath pciutils-3.0.0/Makefile
|
||||
--- pciutils-3.0.0/Makefile.idpath 2008-04-10 21:19:43.000000000 +0200
|
||||
+++ pciutils-3.0.0/Makefile 2008-09-01 15:16:19.000000000 +0200
|
||||
@@ -27,7 +27,7 @@ ABI_VERSION=.3
|
||||
PREFIX=/usr/local
|
||||
SBINDIR=$(PREFIX)/sbin
|
||||
SHAREDIR=$(PREFIX)/share
|
||||
-IDSDIR=$(SHAREDIR)
|
||||
+IDSDIR=$(SHAREDIR)/hwdata
|
||||
MANDIR:=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
|
||||
INCDIR=$(PREFIX)/include
|
||||
LIBDIR=$(PREFIX)/lib
|
444
SOURCES/pciutils-3.7.0-decodercec.patch
Normal file
444
SOURCES/pciutils-3.7.0-decodercec.patch
Normal file
@ -0,0 +1,444 @@
|
||||
From e12bd01eea67ca8cf539263124843ba281eb6ecc Mon Sep 17 00:00:00 2001
|
||||
From: Sean V Kelley <sean.v.kelley@linux.intel.com>
|
||||
Date: Wed, 24 Jun 2020 15:39:40 -0700
|
||||
Subject: pciutils: Add decode support for RCECs
|
||||
|
||||
Root Complex Event Collectors provide support for terminating error
|
||||
and PME messages from RCiEPs. This patch provides basic decoding for
|
||||
the lspci RCEC Endpoint Association Extended Capability. See PCIe 5.0-1,
|
||||
sec 7.9.10 for further details.
|
||||
|
||||
Suggested-by: Bjorn Helgaas <bhelgaas@google.com>
|
||||
Signed-off-by: Sean V Kelley <sean.v.kelley@linux.intel.com>
|
||||
---
|
||||
lib/header.h | 8 +-
|
||||
ls-ecaps.c | 59 +++++++++++-
|
||||
setpci.c | 2 +-
|
||||
tests/cap-rcec | 299 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
4 files changed, 364 insertions(+), 4 deletions(-)
|
||||
create mode 100644 tests/cap-rcec
|
||||
|
||||
diff --git a/lib/header.h b/lib/header.h
|
||||
index 472816e..57a9343 100644
|
||||
--- a/lib/header.h
|
||||
+++ b/lib/header.h
|
||||
@@ -219,7 +219,7 @@
|
||||
#define PCI_EXT_CAP_ID_PB 0x04 /* Power Budgeting */
|
||||
#define PCI_EXT_CAP_ID_RCLINK 0x05 /* Root Complex Link Declaration */
|
||||
#define PCI_EXT_CAP_ID_RCILINK 0x06 /* Root Complex Internal Link Declaration */
|
||||
-#define PCI_EXT_CAP_ID_RCECOLL 0x07 /* Root Complex Event Collector */
|
||||
+#define PCI_EXT_CAP_ID_RCEC 0x07 /* Root Complex Event Collector */
|
||||
#define PCI_EXT_CAP_ID_MFVC 0x08 /* Multi-Function Virtual Channel */
|
||||
#define PCI_EXT_CAP_ID_VC2 0x09 /* Virtual Channel (2nd ID) */
|
||||
#define PCI_EXT_CAP_ID_RCRB 0x0a /* Root Complex Register Block */
|
||||
@@ -1048,6 +1048,12 @@
|
||||
#define PCI_RCLINK_LINK_ADDR 8 /* Link Entry: Address (64-bit) */
|
||||
#define PCI_RCLINK_LINK_SIZE 16 /* Link Entry: sizeof */
|
||||
|
||||
+/* Root Complex Event Collector Endpoint Association */
|
||||
+#define PCI_RCEC_EP_CAP_VER(reg) (((reg) >> 16) & 0xf)
|
||||
+#define PCI_RCEC_BUSN_REG_VER 0x02 /* as per PCIe sec 7.9.10.1 */
|
||||
+#define PCI_RCEC_RCIEP_BMAP 0x0004 /* as per PCIe sec 7.9.10.2 */
|
||||
+#define PCI_RCEC_BUSN_REG 0x0008 /* as per PCIe sec 7.9.10.3 */
|
||||
+
|
||||
/* PCIe Vendor-Specific Capability */
|
||||
#define PCI_EVNDR_HEADER 4 /* Vendor-Specific Header */
|
||||
#define PCI_EVNDR_REGISTERS 8 /* Vendor-Specific Registers */
|
||||
diff --git a/ls-ecaps.c b/ls-ecaps.c
|
||||
index e71209e..99c55ff 100644
|
||||
--- a/ls-ecaps.c
|
||||
+++ b/ls-ecaps.c
|
||||
@@ -634,6 +634,61 @@ cap_rclink(struct device *d, int where)
|
||||
}
|
||||
}
|
||||
|
||||
+static void
|
||||
+cap_rcec(struct device *d, int where)
|
||||
+{
|
||||
+ printf("Root Complex Event Collector Endpoint Association\n");
|
||||
+ if (verbose < 2)
|
||||
+ return;
|
||||
+
|
||||
+ if (!config_fetch(d, where, 12))
|
||||
+ return;
|
||||
+
|
||||
+ u32 hdr = get_conf_long(d, where);
|
||||
+ byte cap_ver = PCI_RCEC_EP_CAP_VER(hdr);
|
||||
+ u32 bmap = get_conf_long(d, where + PCI_RCEC_RCIEP_BMAP);
|
||||
+ printf("\t\tRCiEPBitmap: ");
|
||||
+ if (bmap)
|
||||
+ {
|
||||
+ int prevmatched=0;
|
||||
+ int adjcount=0;
|
||||
+ int prevdev=0;
|
||||
+ printf("RCiEP at Device(s):");
|
||||
+ for (int dev=0; dev < 32; dev++)
|
||||
+ {
|
||||
+ if (BITS(bmap, dev, 1))
|
||||
+ {
|
||||
+ if (!adjcount)
|
||||
+ printf("%s %u", (prevmatched) ? "," : "", dev);
|
||||
+ adjcount++;
|
||||
+ prevdev=dev;
|
||||
+ prevmatched=1;
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ if (adjcount > 1)
|
||||
+ printf("-%u", prevdev);
|
||||
+ adjcount=0;
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ else
|
||||
+ printf("%s", (verbose > 2) ? "00000000 [none]" : "[none]");
|
||||
+ printf("\n");
|
||||
+
|
||||
+ if (cap_ver < PCI_RCEC_BUSN_REG_VER)
|
||||
+ return;
|
||||
+
|
||||
+ u32 busn = get_conf_long(d, where + PCI_RCEC_BUSN_REG);
|
||||
+ u8 lastbusn = BITS(busn, 16, 8);
|
||||
+ u8 nextbusn = BITS(busn, 8, 8);
|
||||
+
|
||||
+ if ((lastbusn == 0x00) && (nextbusn == 0xff))
|
||||
+ printf("\t\tAssociatedBusNumbers: %s\n", (verbose > 2) ? "ff-00 [none]" : "[none]");
|
||||
+ else
|
||||
+ printf("\t\tAssociatedBusNumbers: %02x-%02x\n", nextbusn, lastbusn );
|
||||
+}
|
||||
+
|
||||
static void
|
||||
cap_dvsec_cxl(struct device *d, int where)
|
||||
{
|
||||
@@ -991,8 +1046,8 @@ show_ext_caps(struct device *d, int type)
|
||||
case PCI_EXT_CAP_ID_RCILINK:
|
||||
printf("Root Complex Internal Link <?>\n");
|
||||
break;
|
||||
- case PCI_EXT_CAP_ID_RCECOLL:
|
||||
- printf("Root Complex Event Collector <?>\n");
|
||||
+ case PCI_EXT_CAP_ID_RCEC:
|
||||
+ cap_rcec(d, where);
|
||||
break;
|
||||
case PCI_EXT_CAP_ID_MFVC:
|
||||
printf("Multi-Function Virtual Channel <?>\n");
|
||||
diff --git a/setpci.c b/setpci.c
|
||||
index 90ca726..2cb70fa 100644
|
||||
--- a/setpci.c
|
||||
+++ b/setpci.c
|
||||
@@ -350,7 +350,7 @@ static const struct reg_name pci_reg_names[] = {
|
||||
{ 0x20004, 0, 0, "ECAP_PB" },
|
||||
{ 0x20005, 0, 0, "ECAP_RCLINK" },
|
||||
{ 0x20006, 0, 0, "ECAP_RCILINK" },
|
||||
- { 0x20007, 0, 0, "ECAP_RCECOLL" },
|
||||
+ { 0x20007, 0, 0, "ECAP_RCEC" },
|
||||
{ 0x20008, 0, 0, "ECAP_MFVC" },
|
||||
{ 0x20009, 0, 0, "ECAP_VC2" },
|
||||
{ 0x2000a, 0, 0, "ECAP_RBCB" },
|
||||
diff --git a/tests/cap-rcec b/tests/cap-rcec
|
||||
new file mode 100644
|
||||
index 0000000..836d9a1
|
||||
--- /dev/null
|
||||
+++ b/tests/cap-rcec
|
||||
@@ -0,0 +1,299 @@
|
||||
+6a:00.4 Generic system peripheral [0807]: Intel Corporation Device 0b23
|
||||
+ Subsystem: Intel Corporation Device 0000
|
||||
+ Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
||||
+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
||||
+ Interrupt: pin A routed to IRQ 255
|
||||
+ NUMA node: 0
|
||||
+ Capabilities: [40] Express (v2) Root Complex Event Collector, MSI 00
|
||||
+ DevCap: MaxPayload 512 bytes, PhantFunc 0
|
||||
+ ExtTag- RBE-
|
||||
+ DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq-
|
||||
+ RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
||||
+ MaxPayload 128 bytes, MaxReadReq 128 bytes
|
||||
+ DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
||||
+ RootCap: CRSVisible-
|
||||
+ RootCtl: ErrCorrectable+ ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
|
||||
+ RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
||||
+ DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
||||
+ 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
||||
+ EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
||||
+ FRS-
|
||||
+ DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
|
||||
+ Capabilities: [80] Power Management version 3
|
||||
+ Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
|
||||
+ Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
||||
+ Capabilities: [90] MSI: Enable- Count=1/1 Maskable+ 64bit-
|
||||
+ Address: 00000000 Data: 0000
|
||||
+ Masking: 00000000 Pending: 00000000
|
||||
+ Capabilities: [100 v1] Advanced Error Reporting
|
||||
+ UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
|
||||
+ UEMsk: DLP- SDES+ TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
|
||||
+ UESvrt: DLP+ SDES- TLP+ FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
|
||||
+ CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
|
||||
+ CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
|
||||
+ AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
||||
+ MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
||||
+ HeaderLog: 00000000 00000000 00000000 00000000
|
||||
+ RootCmd: CERptEn- NFERptEn- FERptEn-
|
||||
+ RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
||||
+ FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
|
||||
+ ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
||||
+ Capabilities: [160 v2] Root Complex Event Collector Endpoint Association
|
||||
+ RCiEPBitmap: RCiEP at Device(s): 1, 6, 8-10, 12, 15
|
||||
+ AssociatedBusNumbers: 02-08
|
||||
+00: 86 80 23 0b 00 01 10 00 00 00 07 08 00 00 00 00
|
||||
+10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+20: 00 00 00 00 00 00 00 00 00 00 00 00 86 80 00 00
|
||||
+30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
|
||||
+40: 10 80 a2 00 02 00 00 00 07 00 00 00 00 00 00 00
|
||||
+50: 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00
|
||||
+60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+80: 01 90 03 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+90: 05 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d0: 31 6a 08 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+100: 01 00 01 16 00 00 00 00 20 00 10 00 10 30 46 00
|
||||
+110: 00 00 00 00 00 20 00 00 00 00 00 00 00 00 00 00
|
||||
+120: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+130: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+150: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+160: 07 00 02 00 00 00 00 00 00 ff 00 00 00 00 00 00
|
||||
+170: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+190: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+1a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+1b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+1c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+1d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+1e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+1f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+220: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+230: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+250: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+260: 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00
|
||||
+270: 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00
|
||||
+280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+290: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+2a0: 00 00 00 00 00 00 00 00 20 00 18 00 20 00 18 00
|
||||
+2b0: 20 00 18 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+2c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+2d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+2e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+2f0: 00 20 00 00 00 20 00 00 00 20 00 00 00 e0 00 00
|
||||
+300: 00 e0 00 00 00 e0 00 00 00 e0 00 00 00 e0 00 00
|
||||
+310: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+320: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+330: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+350: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+360: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+370: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+390: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+3a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+3b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+3c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+3d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+3e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+3f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+410: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+420: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+450: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+470: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+490: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+4a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+4b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+4c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+4d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+4e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+4f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+510: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+520: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+530: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+550: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+560: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+570: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+590: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+5a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+5b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+5c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+5d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+5e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+5f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+600: 44 00 00 00 91 00 00 00 00 00 00 00 00 00 00 00
|
||||
+610: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+620: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+630: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+650: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+660: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+670: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+680: 90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+690: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+6a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+6b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+6c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+6d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+6e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+6f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+710: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+720: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+730: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+750: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+760: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+770: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+790: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+7a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+7b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+7c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+7d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+7e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+7f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+810: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+820: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+830: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+850: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+860: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+870: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+890: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+8a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+8b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+8c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+8d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+8e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+8f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+910: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+920: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+930: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+950: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+960: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+970: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+990: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+9a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+9b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+9c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+9d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+9e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+9f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+a90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+aa0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ab0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ac0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ad0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ae0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+af0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+b90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ba0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+bb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+bc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+bd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+be0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+bf0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+c90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ca0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+cb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+cc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+cd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ce0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+cf0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+d90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+da0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+db0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+dc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+dd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+de0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+df0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+e90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ea0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+eb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ec0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ed0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ee0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ef0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+f90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+fa0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+fb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+fc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+fd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+fe0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
+ff0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
--
|
||||
cgit 1.2.3-1.el7
|
||||
|
113
SOURCES/pciutils-dir-d.patch
Normal file
113
SOURCES/pciutils-dir-d.patch
Normal file
@ -0,0 +1,113 @@
|
||||
diff -up pciutils-3.0.0/lib/names-parse.c.dird pciutils-3.0.0/lib/names-parse.c
|
||||
--- pciutils-3.0.0/lib/names-parse.c.dird 2008-04-10 21:15:47.000000000 +0200
|
||||
+++ pciutils-3.0.0/lib/names-parse.c 2008-09-01 15:17:23.000000000 +0200
|
||||
@@ -6,10 +6,13 @@
|
||||
* Can be freely distributed and used under the terms of the GNU GPL.
|
||||
*/
|
||||
|
||||
+#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
+#include <dirent.h>
|
||||
+#include <libgen.h>
|
||||
|
||||
#include "internal.h"
|
||||
#include "names.h"
|
||||
@@ -82,7 +85,7 @@ static inline int id_white_p(int c)
|
||||
}
|
||||
|
||||
|
||||
-static const char *id_parse_list(struct pci_access *a, pci_file f, int *lino)
|
||||
+static const char *id_parse_list(struct pci_access *a, pci_file f, int *lino, int flags)
|
||||
{
|
||||
char line[MAX_LINE];
|
||||
char *p;
|
||||
@@ -207,7 +210,7 @@ static const char *id_parse_list(struct
|
||||
p++;
|
||||
if (!*p)
|
||||
return parse_error;
|
||||
- if (pci_id_insert(a, cat, id1, id2, id3, id4, p, SRC_LOCAL))
|
||||
+ if (pci_id_insert(a, cat, id1, id2, id3, id4, p, SRC_LOCAL) && flags)
|
||||
return "Duplicate entry";
|
||||
}
|
||||
return NULL;
|
||||
@@ -223,13 +226,14 @@ pci_load_name_list(struct pci_access *a)
|
||||
pci_free_name_list(a);
|
||||
a->id_load_failed = 1;
|
||||
if (!(f = pci_open(a)))
|
||||
- return 0;
|
||||
- err = id_parse_list(a, f, &lino);
|
||||
+ return pci_new_load_name_list(a);
|
||||
+ err = id_parse_list(a, f, &lino, 0);
|
||||
PCI_ERROR(f, err);
|
||||
pci_close(f);
|
||||
if (err)
|
||||
a->error("%s at %s, line %d\n", err, a->id_file_name, lino);
|
||||
a->id_load_failed = 0;
|
||||
+ pci_new_load_name_list(a);
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -249,3 +253,49 @@ pci_set_name_list_path(struct pci_access
|
||||
a->id_file_name = name;
|
||||
a->free_id_name = to_be_freed;
|
||||
}
|
||||
+int pci_new_load_name_list(struct pci_access *a)
|
||||
+{
|
||||
+ pci_file f;
|
||||
+ int lino, tempsize;
|
||||
+ const char *err;
|
||||
+ char *temp;
|
||||
+ char new_id_path[PATH_MAX+1] = {0,};
|
||||
+ DIR *pci_ids_dir;
|
||||
+ struct dirent *dp;
|
||||
+
|
||||
+ strncpy(new_id_path, a->id_file_name, PATH_MAX);
|
||||
+ new_id_path[PATH_MAX] = 0;
|
||||
+ strncat(new_id_path, ".d/", PATH_MAX - strnlen(new_id_path, PATH_MAX));
|
||||
+ /* printf("new_id_path is %s\n", new_id_path); */
|
||||
+ pci_ids_dir = opendir(new_id_path);
|
||||
+ if (pci_ids_dir == NULL)
|
||||
+ return 0;
|
||||
+
|
||||
+ do
|
||||
+ {
|
||||
+ if ((dp = readdir(pci_ids_dir)) != NULL)
|
||||
+ {
|
||||
+ if (! strcmp(dp->d_name, "..") || ! strcmp(dp->d_name, "."))
|
||||
+ continue;
|
||||
+ if (strstr(dp->d_name, ".ids"))
|
||||
+ {
|
||||
+ tempsize = strnlen(new_id_path, PATH_MAX) + dp->d_reclen + 1;
|
||||
+ temp = malloc(tempsize); /* This malloced memory is freed in the function pci_set_name_list_path() */
|
||||
+ memset(temp, 0, tempsize);
|
||||
+ strncpy(temp, new_id_path, (strnlen(new_id_path, PATH_MAX))+1);
|
||||
+ strncat(temp, dp->d_name, PATH_MAX - strnlen(temp, PATH_MAX));
|
||||
+ /* printf("Found file %s, processing it\n", temp); */
|
||||
+ pci_set_name_list_path(a, temp, 1);
|
||||
+ if (!(f = pci_open(a)))
|
||||
+ continue;
|
||||
+ err = id_parse_list(a, f, &lino, 0);
|
||||
+ PCI_ERROR(f, err);
|
||||
+ pci_close(f);
|
||||
+ if (err)
|
||||
+ a->error("%s at %s, line %d\n", err, a->id_file_name, lino);
|
||||
+ }
|
||||
+ }
|
||||
+ }while (dp != NULL);
|
||||
+ closedir(pci_ids_dir);
|
||||
+ return 1;
|
||||
+}
|
||||
diff -up pciutils-3.0.0/lib/pci.h.dird pciutils-3.0.0/lib/pci.h
|
||||
--- pciutils-3.0.0/lib/pci.h.dird 2008-04-10 21:23:05.000000000 +0200
|
||||
+++ pciutils-3.0.0/lib/pci.h 2008-09-01 15:17:23.000000000 +0200
|
||||
@@ -194,6 +194,7 @@ int pci_load_name_list(struct pci_access
|
||||
void pci_free_name_list(struct pci_access *a) PCI_ABI; /* Called automatically by pci_cleanup() */
|
||||
void pci_set_name_list_path(struct pci_access *a, char *name, int to_be_freed) PCI_ABI;
|
||||
void pci_id_cache_flush(struct pci_access *a) PCI_ABI;
|
||||
+int pci_new_load_name_list(struct pci_access *a);
|
||||
|
||||
enum pci_lookup_mode {
|
||||
PCI_LOOKUP_VENDOR = 1, /* Vendor name (args: vendorID) */
|
644
SPECS/pciutils.spec
Normal file
644
SPECS/pciutils.spec
Normal file
@ -0,0 +1,644 @@
|
||||
Name: pciutils
|
||||
Version: 3.7.0
|
||||
Release: 5%{?dist}
|
||||
Summary: PCI bus related utilities
|
||||
License: GPLv2+
|
||||
URL: https://mj.ucw.cz/sw/pciutils/
|
||||
|
||||
Source0: https://www.kernel.org/pub/software/utils/pciutils/%{name}-%{version}.tar.xz
|
||||
Source1: multilibconfigh
|
||||
|
||||
#change pci.ids directory to hwdata, fedora/rhel specific
|
||||
Patch1: pciutils-2.2.1-idpath.patch
|
||||
|
||||
#add support for directory with another pci.ids, rejected by upstream, rhbz#195327
|
||||
Patch2: pciutils-dir-d.patch
|
||||
Patch3: pciutils-3.7.0-decodercec.patch
|
||||
|
||||
Requires: hwdata
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
BuildRequires: gcc make sed kmod-devel
|
||||
Provides: /sbin/lspci /sbin/setpci
|
||||
|
||||
%description
|
||||
The pciutils package contains various utilities for inspecting and
|
||||
setting devices connected to the PCI bus.
|
||||
|
||||
%package devel
|
||||
Summary: Linux PCI development library
|
||||
Requires: zlib-devel pkgconfig %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains a library for inspecting and setting
|
||||
devices connected to the PCI bus.
|
||||
|
||||
%package libs
|
||||
Summary: Linux PCI library
|
||||
|
||||
%description libs
|
||||
This package contains a library for inspecting and setting
|
||||
devices connected to the PCI bus.
|
||||
|
||||
%package devel-static
|
||||
Summary: Linux PCI static library
|
||||
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel-static
|
||||
This package contains a static library for inspecting and setting
|
||||
devices connected to the PCI bus.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%make_build SHARED="no" ZLIB="no" LIBKMOD=yes STRIP="" OPT="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" PREFIX="/usr" LIBDIR="%{_libdir}" IDSDIR="/usr/share/hwdata" PCI_IDS="pci.ids"
|
||||
mv lib/libpci.a lib/libpci.a.toinstall
|
||||
|
||||
make clean
|
||||
|
||||
%make_build SHARED="yes" ZLIB="no" LIBKMOD=yes STRIP="" OPT="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" PREFIX="/usr" LIBDIR="%{_libdir}" IDSDIR="/usr/share/hwdata" PCI_IDS="pci.ids"
|
||||
|
||||
|
||||
%install
|
||||
install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man{7,8},%{_libdir},%{_libdir}/pkgconfig,%{_includedir}/pci}
|
||||
|
||||
install -p lspci setpci update-pciids $RPM_BUILD_ROOT%{_sbindir}
|
||||
install -p -m 644 lspci.8 setpci.8 update-pciids.8 $RPM_BUILD_ROOT%{_mandir}/man8
|
||||
install -p -m 644 pcilib.7 $RPM_BUILD_ROOT%{_mandir}/man7
|
||||
install -p lib/libpci.so.* $RPM_BUILD_ROOT%{_libdir}/
|
||||
ln -s $(basename $RPM_BUILD_ROOT%{_libdir}/*.so.*.*.*) $RPM_BUILD_ROOT%{_libdir}/libpci.so
|
||||
|
||||
mv lib/libpci.a.toinstall lib/libpci.a
|
||||
install -p -m 644 lib/libpci.a $RPM_BUILD_ROOT%{_libdir}
|
||||
install -p -m 644 lib/pci.h $RPM_BUILD_ROOT%{_includedir}/pci
|
||||
install -p -m 644 lib/header.h $RPM_BUILD_ROOT%{_includedir}/pci
|
||||
install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/pci/config.h
|
||||
install -p -m 644 lib/config.h $RPM_BUILD_ROOT%{_includedir}/pci/config.%{_lib}.h
|
||||
install -p -m 644 lib/types.h $RPM_BUILD_ROOT%{_includedir}/pci
|
||||
install -p -m 644 lib/libpci.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig
|
||||
|
||||
%ldconfig_scriptlets libs
|
||||
|
||||
%files
|
||||
%doc README ChangeLog pciutils.lsm
|
||||
%{_sbindir}/lspci
|
||||
%{_sbindir}/setpci
|
||||
%{_sbindir}/update-pciids
|
||||
%{_mandir}/man8/*
|
||||
|
||||
%files libs
|
||||
%license COPYING
|
||||
%{_libdir}/libpci.so.*
|
||||
|
||||
%files devel-static
|
||||
%{_libdir}/libpci.a
|
||||
|
||||
%files devel
|
||||
%{_libdir}/pkgconfig/libpci.pc
|
||||
%{_libdir}/libpci.so
|
||||
%{_includedir}/pci
|
||||
%{_mandir}/man7/*
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.7.0-5
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.7.0-4
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Feb 02 2021 Michal Hlavinka <mhlavink@redhat.com> - 3.7.0-3
|
||||
- spec file cleanup
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Oct 30 2020 Michal Hlavinka <mhlavink@redhat.com> - 3.7.0-1
|
||||
- updated to 3.7.0
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Feb 28 2020 Michal Hlavinka <mhlavink@redhat.com> - 3.6.4-1
|
||||
- pciutils updated to 3.6.4
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jan 22 2020 Peter Robinson <pbrobinson@fedoraproject.org> 3.6.3-1
|
||||
- pciutils updated to 3.6.3
|
||||
- spec cleanups, use %%license, use kernel.org download
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Aug 13 2018 Michal Hlavinka <mhlavink@redhat.com> - 3.6.2-1
|
||||
- pciutils updated to 3.6.2
|
||||
|
||||
* Fri Jul 13 2018 Michal Hlavinka <mhlavink@redhat.com> - 3.6.1-1
|
||||
- pciutils updated to 3.6.1
|
||||
|
||||
* Mon Jul 09 2018 Michal Hlavinka <mhlavink@redhat.com> - 3.6.0-1
|
||||
- pciutils updated to 3.6.0
|
||||
|
||||
* Wed Mar 07 2018 Michal Hlavinka <mhlavink@redhat.com> - 3.5.6-4
|
||||
- add gcc buildrequire
|
||||
|
||||
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 3.5.6-3
|
||||
- Use LDFLAGS from redhat-rpm-config
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Nov 20 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.6-1
|
||||
- pciutils updated to 3.5.6
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Jul 07 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.5-1
|
||||
- pciutils updated to 3.5.5
|
||||
|
||||
* Mon Feb 27 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.4-1
|
||||
- pciutils updated to 3.5.4
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Oct 04 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.5.2-1
|
||||
- pciutils updated to 3.5.2
|
||||
|
||||
* Thu Aug 11 2016 Michal Toman <mtoman@fedoraproject.org> - 3.5.1-2
|
||||
- Add support for MIPS to multilibconfigh
|
||||
|
||||
* Tue May 24 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-1
|
||||
- pciutils updated to 3.5.1
|
||||
|
||||
* Fri May 20 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.5.0-1
|
||||
- pciutils updated to 3.5.0
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jan 05 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.4.1-1
|
||||
- pciutils updated to 3.4.1
|
||||
|
||||
* Tue Sep 15 2015 Michal Hlavinka <mhlavink@redhat.com> - 3.4.0-1
|
||||
- pciutils updated to 3.4.0
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Fri Apr 10 2015 Michal Hlavinka <mhlavink@redhat.com> - 3.3.1-1
|
||||
- pciutils updated to 3.3.1
|
||||
|
||||
* Wed Nov 12 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.3.0-1
|
||||
- updated to 3.3.0
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Apr 15 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-2
|
||||
- enable libkmod support (#1087862)
|
||||
|
||||
* Fri Nov 15 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-1
|
||||
- updated to 3.2.1
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri May 31 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.0-2
|
||||
- updated to 3.2.0
|
||||
- add aarch64 support (#969138)
|
||||
|
||||
* Mon Apr 22 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.0-1
|
||||
- updated to 3.2.0
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Jun 26 2012 Michal Hlavinka <mhlavink@redhat.com> - 3.1.10-1
|
||||
- updated to 3.1.10
|
||||
|
||||
* Mon Jan 16 2012 Michal Hlavinka <mhlavink@redhat.com> - 3.1.9-1
|
||||
- updated to 3.1.9
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Oct 03 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.8-1
|
||||
- updated to 3.1.8
|
||||
|
||||
* Thu Mar 17 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-6
|
||||
- don't forget to close pci.ids directory
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Jan 26 2011 Dan Horák <dan[at]danny.cz> - 3.1.7-4
|
||||
- fix the multilib header on s390x
|
||||
|
||||
* Tue Jan 18 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-3
|
||||
- different approach to fix multilib issues
|
||||
|
||||
* Mon Jan 10 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-2
|
||||
- removed obsolete patches
|
||||
|
||||
* Mon Aug 30 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-1
|
||||
- updated to 3.1.7
|
||||
|
||||
* Wed Jul 07 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-5
|
||||
- follow licensing guideline update
|
||||
|
||||
* Thu Feb 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-4
|
||||
- move update-pciids
|
||||
|
||||
* Thu Feb 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-3
|
||||
- spec cleanup
|
||||
|
||||
* Wed Feb 03 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-2
|
||||
- libpci moved to /lib
|
||||
|
||||
* Mon Jan 25 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-1
|
||||
- updated to 3.1.6
|
||||
|
||||
* Mon Nov 02 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-6
|
||||
- spec cleanup
|
||||
|
||||
* Mon Oct 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-5
|
||||
- fix build to enable -F option (#531020)
|
||||
|
||||
* Mon Oct 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-4
|
||||
- enable direct hardware access method for 64bit architectures
|
||||
|
||||
* Mon Oct 12 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-3
|
||||
- don't ship static library in -devel sub-package
|
||||
|
||||
* Tue Sep 01 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-2
|
||||
- add COPYING to docs
|
||||
|
||||
* Tue Sep 01 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-1
|
||||
- updated to 3.1.4
|
||||
|
||||
* Wed Jul 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.3-1
|
||||
- updated to 3.1.3
|
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Apr 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.2-5
|
||||
- add support for ARM
|
||||
|
||||
* Fri Feb 27 2009 Michal Hlavinka <mhlaivnk@redhat.com> - 3.1.2-4
|
||||
- fix typo & rebuild
|
||||
|
||||
* Fri Feb 27 2009 Michal Hlavinka <mhlaivnk@redhat.com> - 3.1.2-3
|
||||
- fix: lspci segfaults when pci.ids cannot be found (#487516)
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Tue Feb 17 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.2-1
|
||||
- version 3.1.2
|
||||
- fix for the syntax error checks in setpci argument parser
|
||||
|
||||
* Wed Feb 04 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.1-1
|
||||
- version 3.1.1
|
||||
|
||||
* Tue Jan 27 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.0-2
|
||||
- fix typo in multilib patch - for s390x building
|
||||
|
||||
* Mon Jan 19 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.0-1
|
||||
- version 3.1.0
|
||||
|
||||
* Tue Dec 09 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.3-1
|
||||
- version 3.0.3
|
||||
|
||||
* Mon Sep 22 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.2-1
|
||||
- version 3.0.2
|
||||
|
||||
* Fri Sep 19 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.1-1
|
||||
- version 3.0.1
|
||||
- add support for Super-H (sh3,sh4) (#446600)
|
||||
- fix: broken -L in libpci.pc (#456469)
|
||||
|
||||
* Mon Sep 01 2008 Harald Hoyer <harald@redhat.com> 3.0.0-2
|
||||
- rebuild to eliminate fuzz patches
|
||||
|
||||
* Mon Jun 02 2008 Harald Hoyer <harald@redhat.com> 3.0.0-1
|
||||
- version 3.0.0
|
||||
|
||||
* Mon May 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.2.10-2
|
||||
- add sparc support
|
||||
|
||||
* Wed Feb 20 2008 Harald Hoyer <harald@redhat.com> 2.2.10-1
|
||||
- version 2.2.10
|
||||
|
||||
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2.9-6
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Tue Jan 22 2008 Bill Nottingham <notting@redhat.com> 2.2.9-5
|
||||
- put library back
|
||||
|
||||
* Mon Jan 21 2008 Harald Hoyer <harald@redhat.com> 2.2.9-4
|
||||
- fixed segfault, if subdir does not exists
|
||||
|
||||
* Fri Jan 18 2008 Harald Hoyer <harald@redhat.com> 2.2.9-3
|
||||
- removed static library, preserve timestamps on install (rhbz#226236)
|
||||
- added modified patch from Michael E. Brown @ Dell, to also
|
||||
read all /usr/share/hwdata/pci.ids.d/*.ids files (rhbz#195327)
|
||||
|
||||
* Thu Jan 10 2008 Harald Hoyer <harald@redhat.com> 2.2.9-2
|
||||
- added more requirements for pciutils-devel
|
||||
|
||||
* Tue Nov 20 2007 Harald Hoyer <harald@redhat.com> - 2.2.9-1
|
||||
- version 2.2.9
|
||||
- added package config file (rhbz#389451)
|
||||
|
||||
* Wed Aug 22 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-3
|
||||
- changed license tag
|
||||
|
||||
* Thu Jul 12 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-2
|
||||
- fixed update-pciids.sh
|
||||
|
||||
* Wed Jun 27 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-1
|
||||
- version 2.2.6
|
||||
- fixed URL in update-pciids.sh
|
||||
|
||||
* Thu May 31 2007 Harald Hoyer <harald@redhat.com> - 2.2.5-1
|
||||
- version 2.2.5
|
||||
|
||||
* Thu Apr 5 2007 Peter Jones <pjones@redhat.com> - 2.2.4-3
|
||||
- buildreq zlib-devel, so we know configure will find it consistently.
|
||||
|
||||
* Mon Apr 2 2007 Harald Hoyer <harald@redhat.com> - 2.2.4-2
|
||||
- added alpha to multilib patch (#231790)
|
||||
- specfile cleanup
|
||||
- Resolves: rhbz#231790
|
||||
|
||||
* Fri Jan 26 2007 Harald Hoyer <harald@redhat.com> - 2.2.4-1
|
||||
- version 2.2.4
|
||||
- truncate long device names (#205948)
|
||||
- Resolves: rhbz#205948
|
||||
|
||||
* Wed Aug 9 2006 Peter Jones <pjones@redhat.com> - 2.2.3-4
|
||||
- Add definitions for more pci storage classes
|
||||
|
||||
* Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.2.3-3
|
||||
- rebuild
|
||||
|
||||
* Fri Jun 02 2006 Harald Hoyer <harald@redhat.com> 2.2.3-2
|
||||
- corrected multilib patch
|
||||
|
||||
* Tue May 23 2006 Harald Hoyer <harald@redhat.com> 2.2.3-1
|
||||
- version 2.2.3
|
||||
- multilib patch (bug #192743)
|
||||
|
||||
* Thu Feb 23 2006 Harald Hoyer <harald@redhat.com> 2.2.1-2
|
||||
- added update-pciids shell script and manpage (bz #178582)
|
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-1.2
|
||||
- bump again for double-long bug on ppc(64)
|
||||
|
||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-1.1
|
||||
- rebuilt for new gcc4.1 snapshot and glibc changes
|
||||
|
||||
* Tue Dec 13 2005 Bill Nottingham <notting@redhat.com> - 2.2.1-1
|
||||
- update to 2.2.1, adjust patches
|
||||
|
||||
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Thu May 19 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-10
|
||||
- allow 64-bit addresses on x86_64 (#158217, <Matt_Domsch@dell.com>)
|
||||
|
||||
* Tue May 10 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-9
|
||||
- fix debuginfo generation
|
||||
|
||||
* Mon Mar 14 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-8
|
||||
- add patch for glibc macros (#151032, <redhat-bugzilla@linuxnetz.de>)
|
||||
|
||||
* Wed Mar 2 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-7
|
||||
- FC4. GCC 4. fore!
|
||||
|
||||
* Tue Jan 25 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-6
|
||||
- remove explicit kernel dep (#146153)
|
||||
|
||||
* Fri Jan 21 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-5
|
||||
- fix domain bug (#138722, #144383)
|
||||
|
||||
* Mon Nov 22 2004 Jeremy Katz <katzj@redhat.com> - 2.1.99.test8-4
|
||||
- don't use dietlibc on x86 anymore
|
||||
|
||||
* Thu Sep 2 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test8-3
|
||||
- change sysfs access for detecting devices who get fixed up in the
|
||||
kernel (#115522, #123802)
|
||||
|
||||
* Tue Aug 31 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test8-2
|
||||
- update to test8
|
||||
- fix headers
|
||||
|
||||
* Fri Jul 9 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test7-1
|
||||
- update to test7
|
||||
- fix segfault on some x86-64 boxen
|
||||
|
||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Mon Dec 8 2003 Bill Nottingham <notting@redhat.com> 2.1.11-4
|
||||
- fix paths for pci.ids, etc. (#111665)
|
||||
|
||||
* Tue Nov 25 2003 Bill Nottingham <notting@redhat.com> 2.1.11-3
|
||||
- remove a few calls to ->error() in the sysfs code
|
||||
|
||||
* Fri Nov 21 2003 Jeremy Katz <katzj@redhat.com> 2.1.11-2
|
||||
- build a diet libpci_loader.a on i386
|
||||
- always assume pread exists, it does with diet and all vaguely recent glibc
|
||||
|
||||
* Fri Nov 21 2003 Bill Nottingham <notting@redhat.com> 2.1.11-1
|
||||
- update to 2.1.11
|
||||
- add patch for sysfs & pci domains support (<willy@debian.org>)
|
||||
|
||||
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Wed Feb 12 2003 Bill Nottingham <notting@redhat.com>
|
||||
- don't segfault when there's no pci bus (#84146)
|
||||
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 2.1.10-5
|
||||
- Add patch4 for ppc64. The basic rule seems to be that on any platform
|
||||
where it is possible to be running a 64-bit kernel, we need to always
|
||||
print out 64-bit addresses.
|
||||
|
||||
* Mon Nov 4 2002 Bill Nottingham <notting@redhat.com> 2.1.10-4
|
||||
- fix dir perms on /usr/include/pci
|
||||
|
||||
* Tue Oct 15 2002 Bill Nottingham <notting@redhat.com> 2.1.10-3
|
||||
- use %%{_libdir}
|
||||
- own /usr/include/pci
|
||||
- build library with -fPIC
|
||||
|
||||
* Mon Jul 8 2002 Bill Nottingham <notting@redhat.com> 2.1.10-2
|
||||
- don't build with -fomit-frame-pointer
|
||||
|
||||
* Mon Jun 24 2002 Bill Nottingham <notting@redhat.com> 2.1.10-1
|
||||
- update to 2.1.10
|
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Mon Jun 17 2002 Bill Nottingham <notting@redhat.com> 2.1.9-4
|
||||
- don't forcibly strip binaries
|
||||
|
||||
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
|
||||
- rebuild
|
||||
|
||||
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
|
||||
- require hwdata now that pci.ids is there
|
||||
|
||||
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Sun Dec 30 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||
- man page is now owned by root
|
||||
|
||||
* Wed Oct 17 2001 Bill Nottingham <notting@redhat.com>
|
||||
- dump all the patches, ship pci.ids direct out of sourceforge CVS
|
||||
|
||||
* Wed Sep 26 2001 Bill Nottingham <notting@redhat.com>
|
||||
- broadcom bcm5820 id (#53592)
|
||||
|
||||
* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
|
||||
- more ids
|
||||
|
||||
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
|
||||
- add newline in printf in PCI-X patch (#49277)
|
||||
|
||||
* Mon Jul 9 2001 Bill Nottingham <notting@redhat.com>
|
||||
- update broadcom patch
|
||||
- add new ids from 2.4.6
|
||||
|
||||
* Mon May 28 2001 Bill Nottingham <notting@redhat.com>
|
||||
- add a couple of e1000 ids
|
||||
|
||||
* Thu Mar 22 2001 Bill Nottingham <notting@redhat.com>
|
||||
- another megaraid id
|
||||
|
||||
* Wed Mar 21 2001 Bill Nottingham <notting@redhat.com>
|
||||
- another megaraid id
|
||||
|
||||
* Wed Mar 14 2001 Preston Brown <pbrown@redhat.com>
|
||||
- LSI SCSI PCI id
|
||||
|
||||
* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||
- fix formatting problems
|
||||
|
||||
* Wed Feb 21 2001 Preston Brown <pbrown@redhat.com>
|
||||
- add IBM ServeRAID entries
|
||||
|
||||
* Tue Feb 20 2001 Preston Brown <pbrown@redhat.com>
|
||||
- i860 entries.
|
||||
|
||||
* Mon Feb 19 2001 Helge Deller <hdeller@redhat.de>
|
||||
- added various pci ids
|
||||
|
||||
* Fri Feb 2 2001 Bill Nottingham <notting@redhat.com>
|
||||
- fix mishap in fixing mishap
|
||||
|
||||
* Thu Feb 1 2001 Bill Nottingham <notting@redhat.com>
|
||||
- fix apparent mishap in pci.ids update from kernel (#25520)
|
||||
|
||||
* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
|
||||
- pci.ids updates
|
||||
|
||||
* Tue Dec 12 2000 Bill Nottingham <notting@redhat.com>
|
||||
- big pile of pci.ids updates
|
||||
|
||||
* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||
- clean up patches to not generate badly-formatted files
|
||||
|
||||
* Tue Jul 25 2000 Preston Brown <pbrown@redhat.com>
|
||||
- Vortex fixes laroche originally applied on kudzu moved here.
|
||||
|
||||
* Fri Jul 14 2000 Preston Brown <pbrown@redhat.com>
|
||||
- pci ids for i815, new ati hardware
|
||||
|
||||
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
||||
- automatic rebuild
|
||||
|
||||
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
|
||||
- yet more IDs
|
||||
- PCI-X support from Matt Domsch
|
||||
|
||||
* Fri Jul 7 2000 Bill Nottingham <notting@redhat.com>
|
||||
- some more QLogic ids
|
||||
|
||||
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
|
||||
- more IDs from Dell
|
||||
|
||||
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.8
|
||||
|
||||
* Fri Apr 21 2000 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.7
|
||||
|
||||
* Mon Apr 17 2000 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.6
|
||||
|
||||
* Fri Mar 3 2000 Bill Nottingham <notting@redhat.com>
|
||||
- add a couple of ids
|
||||
|
||||
* Mon Feb 14 2000 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.5
|
||||
|
||||
* Thu Feb 3 2000 Bill Nottingham <notting@redhat.com>
|
||||
- handle compressed man pages
|
||||
|
||||
* Mon Jan 24 2000 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.4
|
||||
|
||||
* Thu Jan 20 2000 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.3
|
||||
|
||||
* Fri Dec 24 1999 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.1.2
|
||||
|
||||
* Tue Jun 29 1999 Bill Nottingham <notting@redhat.com>
|
||||
- add -devel package
|
||||
|
||||
* Thu May 20 1999 Bill Nottingham <notting@redhat.com>
|
||||
- update to 2.0
|
||||
|
||||
* Mon Apr 19 1999 Jakub Jelinek <jj@ultra.linux.cz>
|
||||
- update to 1.99.5
|
||||
- fix sparc64 operation
|
||||
|
||||
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||||
- auto rebuild in the new build environment (release 2)
|
||||
|
||||
* Thu Feb 4 1999 Bill Nottingham <notting@redhat.com>
|
||||
- initial build
|
Loading…
Reference in New Issue
Block a user