454028
Name:		pciutils
dda79d
Version:	3.5.1
248c41
Release:	3%{?dist}
454028
Source:		ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz
454028
Source1:        multilibconfigh
454028
454028
#change pci.ids directory to hwdata, fedora/rhel specific
454028
Patch1:		pciutils-2.2.1-idpath.patch
454028
454028
#add support for directory with another pci.ids, rejected by upstream, rhbz#195327
454028
Patch2:		pciutils-dir-d.patch
401f83
Patch3: pciutils-3.5.1-gen4speed.patch
454028
454028
License:	GPLv2+
454028
URL:		http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml
454028
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
454028
ExclusiveOS:	Linux
454028
Requires:	hwdata
fd288c
Requires:	%{name}-libs = %{version}-%{release}
dda79d
BuildRequires:	sed, kmod-devel
454028
Summary: PCI bus related utilities
454028
Group: Applications/System
454028
454028
%description
454028
The pciutils package contains various utilities for inspecting and
454028
setting devices connected to the PCI bus. The utilities provided
454028
require kernel version 2.1.82 or newer (which support the
454028
/proc/bus/pci interface).
454028
454028
%package devel
454028
Summary: Linux PCI development library
454028
Group: Development/Libraries
454028
Requires: zlib-devel pkgconfig %{name} = %{version}-%{release}
454028
454028
%description devel
454028
This package contains a library for inspecting and setting
454028
devices connected to the PCI bus.
454028
454028
%package libs
454028
Summary: Linux PCI library
454028
Group: System Environment/Libraries
454028
454028
%description libs
454028
This package contains a library for inspecting and setting
454028
devices connected to the PCI bus.
454028
454028
%package devel-static
454028
Summary: Linux PCI static library
454028
Group: System Environment/Libraries
454028
Requires: %{name}-devel = %{version}-%{release}
454028
454028
%description devel-static
454028
This package contains a static library for inspecting and setting
454028
devices connected to the PCI bus.
454028
454028
%prep
454028
%setup -q -n pciutils-%{version}
454028
%patch1 -p1 -b .idpath
454028
%patch2 -p1 -b .dird
401f83
%patch3 -p1 -b .gen4speed
454028
454028
%build
dda79d
make SHARED="no" LIBKMOD="yes" ZLIB="no" STRIP="" OPT="$RPM_OPT_FLAGS" PREFIX="/usr" IDSDIR="/usr/share/hwdata" PCI_IDS="pci.ids" %{?_smp_mflags}
454028
mv lib/libpci.a lib/libpci.a.toinstall
454028
454028
make clean
454028
dda79d
make SHARED="yes" LIBKMOD="yes" ZLIB="no" STRIP="" OPT="$RPM_OPT_FLAGS" PREFIX="/usr" LIBDIR="%{_libdir}" IDSDIR="/usr/share/hwdata" PCI_IDS="pci.ids" %{?_smp_mflags}
454028
454028
#fix lib vs. lib64 in libpci.pc (static Makefile is used)
fd288c
sed -i "s|^libdir=.*$|libdir=%{_libdir}|" lib/libpci.pc
454028
454028
454028
%install
454028
rm -rf $RPM_BUILD_ROOT
454028
fd288c
install -d $RPM_BUILD_ROOT/{sbin,%{_sbindir},%{_mandir}/man8,%{_libdir},%{_libdir}/pkgconfig,%{_includedir}/pci}
454028
fd288c
install -p lspci setpci $RPM_BUILD_ROOT/%{_sbindir}
454028
install -p update-pciids $RPM_BUILD_ROOT/%{_sbindir}
454028
install -p -m 644 lspci.8 setpci.8 update-pciids.8 $RPM_BUILD_ROOT%{_mandir}/man8
fd288c
install -p lib/libpci.so.* $RPM_BUILD_ROOT/%{_libdir}/
fd288c
ln -s $(basename $RPM_BUILD_ROOT/%{_libdir}/*.so.*.*.*) $RPM_BUILD_ROOT%{_libdir}/libpci.so
454028
454028
mv lib/libpci.a.toinstall lib/libpci.a
454028
install -p -m 644 lib/libpci.a $RPM_BUILD_ROOT%{_libdir}
fd288c
/sbin/ldconfig -N $RPM_BUILD_ROOT/%{_libdir}
454028
install -p lib/pci.h $RPM_BUILD_ROOT%{_includedir}/pci
454028
install -p lib/header.h $RPM_BUILD_ROOT%{_includedir}/pci
454028
install -p %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/pci/config.h
454028
install -p lib/config.h $RPM_BUILD_ROOT%{_includedir}/pci/config.%{_lib}.h
454028
install -p lib/types.h $RPM_BUILD_ROOT%{_includedir}/pci
454028
install -p lib/libpci.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig
454028
454028
%post libs -p /sbin/ldconfig
454028
454028
%postun libs -p /sbin/ldconfig
454028
454028
%files
454028
%defattr(-,root,root,-)
454028
%doc README ChangeLog pciutils.lsm COPYING
fd288c
%{_sbindir}/lspci
fd288c
%{_sbindir}/setpci
454028
%{_sbindir}/update-pciids
454028
%{_mandir}/man8/*
454028
454028
%files libs
454028
%doc COPYING
454028
%defattr(-,root,root,-)
fd288c
/%{_libdir}/libpci.so.*
454028
454028
%files devel-static
454028
%defattr(-,root,root,-)
454028
%{_libdir}/libpci.a
454028
454028
%files devel
454028
%defattr(0644, root, root, 0755)
454028
%{_libdir}/pkgconfig/libpci.pc
454028
%{_libdir}/libpci.so
454028
%{_includedir}/pci
454028
454028
%clean
454028
rm -rf $RPM_BUILD_ROOT
454028
454028
%changelog
248c41
* Fri Oct 27 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-3
248c41
- fix update-pciids url (#1493772)
248c41
401f83
* Mon Apr 03 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-2
401f83
- show speed of gen4 pci cards (#1425167)
401f83
dda79d
* Tue Jun 28 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-1
dda79d
- updated to 3.5.1
dda79d
- adds support for 32-bit PCI domains (#1337658)
dda79d
dda79d
* Tue Jun 28 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-5
dda79d
- build with libkmod support enabled (#1304026)
dda79d
fd288c
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.2.1-4
fd288c
- Mass rebuild 2014-01-24
fd288c
fd288c
* Wed Jan 08 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-3
fd288c
- fix lib vs libdir macros usage
fd288c
fd288c
* Wed Jan 08 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-2
fd288c
- pciutils needs explicit require for pciutils-libs
fd288c
fd288c
* Fri Jan 03 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-1
fd288c
- updated to 3.2.1
fd288c
fd288c
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.2.0-3
fd288c
- Mass rebuild 2013-12-27
fd288c
454028
* Fri May 31 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.0-2
454028
- add aarch64 support (#969138)
454028
454028
* Mon Apr 22 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.0-1
454028
- updated to 3.2.0
454028
454028
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-3
454028
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
454028
454028
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-2
454028
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
454028
454028
* Tue Jun 26 2012 Michal Hlavinka <mhlavink@redhat.com> - 3.1.10-1
454028
- updated to 3.1.10
454028
454028
* Mon Jan 16 2012 Michal Hlavinka <mhlavink@redhat.com> - 3.1.9-1
454028
- updated to 3.1.9
454028
454028
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-2
454028
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
454028
454028
* Mon Oct 03 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.8-1
454028
- updated to 3.1.8
454028
454028
* Thu Mar 17 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-6
454028
- don't forget to close pci.ids directory
454028
454028
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-5
454028
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
454028
454028
* Wed Jan 26 2011 Dan Horák <dan[at]danny.cz> - 3.1.7-4
454028
- fix the multilib header on s390x
454028
454028
* Tue Jan 18 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-3
454028
- different approach to fix multilib issues
454028
454028
* Mon Jan 10 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-2
454028
- removed obsolete patches
454028
454028
* Mon Aug 30 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-1
454028
- updated to 3.1.7
454028
fd288c
* Wed Jul 07 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-5
454028
- follow licensing guideline update
454028
454028
* Thu Feb 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-4
454028
- move update-pciids
454028
454028
* Thu Feb 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-3
454028
- spec cleanup
454028
454028
* Wed Feb 03 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-2
454028
- libpci moved to /lib
454028
454028
* Mon Jan 25 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-1
454028
- updated to 3.1.6
454028
454028
* Mon Nov 02 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-6
454028
- spec cleanup
454028
454028
* Mon Oct 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-5
454028
- fix build to enable -F option (#531020)
454028
454028
* Mon Oct 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-4
454028
- enable direct hardware access method for 64bit architectures
454028
454028
* Mon Oct 12 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-3
454028
- don't ship static library in -devel sub-package
454028
454028
* Tue Sep 01 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-2
454028
- add COPYING to docs
454028
454028
* Tue Sep 01 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-1
454028
- updated to 3.1.4
454028
454028
* Wed Jul 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.3-1
454028
- updated to 3.1.3
454028
454028
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-6
454028
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
454028
454028
* Wed Apr 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.2-5
454028
- add support for ARM
454028
454028
* Fri Feb 27 2009 Michal Hlavinka <mhlaivnk@redhat.com> - 3.1.2-4
454028
- fix typo & rebuild
454028
454028
* Fri Feb 27 2009 Michal Hlavinka <mhlaivnk@redhat.com> - 3.1.2-3
454028
- fix: lspci segfaults when pci.ids cannot be found (#487516)
454028
454028
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-2
454028
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
454028
454028
* Tue Feb 17 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.2-1
454028
- version 3.1.2
454028
- fix for the syntax error checks in setpci argument parser
454028
454028
* Wed Feb 04 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.1-1
454028
- version 3.1.1
454028
454028
* Tue Jan 27 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.0-2
454028
- fix typo in multilib patch - for s390x building
454028
454028
* Mon Jan 19 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.0-1
454028
- version 3.1.0
454028
454028
* Tue Dec 09 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.3-1
454028
- version 3.0.3
454028
454028
* Mon Sep 22 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.2-1
454028
- version 3.0.2
454028
454028
* Fri Sep 19 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.1-1
454028
- version 3.0.1
454028
- add support for Super-H (sh3,sh4) (#446600)
454028
- fix: broken -L in libpci.pc (#456469)
454028
454028
* Mon Sep 01 2008 Harald Hoyer <harald@redhat.com> 3.0.0-2
454028
- rebuild to eliminate fuzz patches
454028
454028
* Mon Jun 02 2008 Harald Hoyer <harald@redhat.com> 3.0.0-1
454028
- version 3.0.0
454028
454028
* Mon May 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.2.10-2
454028
- add sparc support
454028
454028
* Wed Feb 20 2008 Harald Hoyer <harald@redhat.com> 2.2.10-1
454028
- version 2.2.10
454028
454028
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2.9-6
454028
- Autorebuild for GCC 4.3
454028
454028
* Tue Jan 22 2008 Bill Nottingham <notting@redhat.com> 2.2.9-5
454028
- put library back
454028
454028
* Mon Jan 21 2008 Harald Hoyer <harald@redhat.com> 2.2.9-4
454028
- fixed segfault, if subdir does not exists
454028
454028
* Fri Jan 18 2008 Harald Hoyer <harald@redhat.com> 2.2.9-3
454028
- removed static library, preserve timestamps on install (rhbz#226236)
454028
- added modified patch from Michael E. Brown @ Dell, to also
454028
  read all /usr/share/hwdata/pci.ids.d/*.ids files (rhbz#195327)
454028
454028
* Thu Jan 10 2008 Harald Hoyer <harald@redhat.com> 2.2.9-2
454028
- added more requirements for pciutils-devel
454028
454028
* Tue Nov 20 2007 Harald Hoyer <harald@redhat.com> - 2.2.9-1
454028
- version 2.2.9
454028
- added package config file (rhbz#389451)
454028
454028
* Wed Aug 22 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-3
454028
- changed license tag
454028
454028
* Thu Jul 12 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-2
454028
- fixed update-pciids.sh
454028
454028
* Wed Jun 27 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-1
454028
- version 2.2.6
454028
- fixed URL in update-pciids.sh 
454028
454028
* Thu May 31 2007 Harald Hoyer <harald@redhat.com> - 2.2.5-1
454028
- version 2.2.5
454028
454028
* Thu Apr  5 2007 Peter Jones <pjones@redhat.com> - 2.2.4-3
454028
- buildreq zlib-devel, so we know configure will find it consistently.
454028
454028
* Mon Apr  2 2007 Harald Hoyer <harald@redhat.com> - 2.2.4-2
454028
- added alpha to multilib patch (#231790)
454028
- specfile cleanup
454028
- Resolves: rhbz#231790
454028
454028
* Fri Jan 26 2007 Harald Hoyer <harald@redhat.com> - 2.2.4-1
454028
- version 2.2.4
454028
- truncate long device names (#205948)
454028
- Resolves: rhbz#205948
454028
454028
* Wed Aug  9 2006 Peter Jones <pjones@redhat.com> - 2.2.3-4
454028
- Add definitions for more pci storage classes
454028
454028
* Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.2.3-3
454028
- rebuild
454028
454028
* Fri Jun 02 2006 Harald Hoyer <harald@redhat.com> 2.2.3-2
454028
- corrected multilib patch
454028
454028
* Tue May 23 2006 Harald Hoyer <harald@redhat.com> 2.2.3-1
454028
- version 2.2.3
454028
- multilib patch (bug #192743)
454028
454028
* Thu Feb 23 2006 Harald Hoyer <harald@redhat.com> 2.2.1-2
454028
- added update-pciids shell script and manpage (bz #178582)
454028
454028
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-1.2
454028
- bump again for double-long bug on ppc(64)
454028
454028
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-1.1
454028
- rebuilt for new gcc4.1 snapshot and glibc changes
454028
454028
* Tue Dec 13 2005 Bill Nottingham <notting@redhat.com> - 2.2.1-1
454028
- update to 2.2.1, adjust patches
454028
454028
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
454028
- rebuilt
454028
454028
* Thu May 19 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-10
454028
- allow 64-bit addresses on x86_64 (#158217, <Matt_Domsch@dell.com>)
454028
454028
* Tue May 10 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-9
454028
- fix debuginfo generation
454028
454028
* Mon Mar 14 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-8
454028
- add patch for glibc macros (#151032, <redhat-bugzilla@linuxnetz.de>)
454028
454028
* Wed Mar  2 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-7
454028
- FC4. GCC 4. fore!
454028
454028
* Tue Jan 25 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-6
454028
- remove explicit kernel dep (#146153)
454028
454028
* Fri Jan 21 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-5
454028
- fix domain bug (#138722, #144383)
454028
454028
* Mon Nov 22 2004 Jeremy Katz <katzj@redhat.com> - 2.1.99.test8-4
454028
- don't use dietlibc on x86 anymore
454028
454028
* Thu Sep  2 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test8-3
454028
- change sysfs access for detecting devices who get fixed up in the
454028
  kernel (#115522, #123802)
454028
454028
* Tue Aug 31 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test8-2
454028
- update to test8
454028
- fix headers
454028
454028
* Fri Jul  9 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test7-1
454028
- update to test7
454028
- fix segfault on some x86-64 boxen
454028
454028
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
454028
- rebuilt
454028
454028
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
454028
- rebuilt
454028
454028
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
454028
- rebuilt
454028
454028
* Mon Dec  8 2003 Bill Nottingham <notting@redhat.com> 2.1.11-4
454028
- fix paths for pci.ids, etc. (#111665)
454028
454028
* Tue Nov 25 2003 Bill Nottingham <notting@redhat.com> 2.1.11-3
454028
- remove a few calls to ->error() in the sysfs code
454028
454028
* Fri Nov 21 2003 Jeremy Katz <katzj@redhat.com> 2.1.11-2
454028
- build a diet libpci_loader.a on i386
454028
- always assume pread exists, it does with diet and all vaguely recent glibc
454028
454028
* Fri Nov 21 2003 Bill Nottingham <notting@redhat.com> 2.1.11-1
454028
- update to 2.1.11
454028
- add patch for sysfs & pci domains support (<willy@debian.org>)
454028
454028
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
454028
- rebuilt
454028
454028
* Wed Feb 12 2003 Bill Nottingham <notting@redhat.com>
454028
- don't segfault when there's no pci bus (#84146)
454028
454028
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
454028
- rebuilt
454028
454028
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 2.1.10-5
454028
- Add patch4 for ppc64. The basic rule seems to be that on any platform
454028
where it is possible to be running a 64-bit kernel, we need to always 
454028
print out 64-bit addresses.
454028
454028
* Mon Nov  4 2002 Bill Nottingham <notting@redhat.com> 2.1.10-4
454028
- fix dir perms on /usr/include/pci
454028
454028
* Tue Oct 15 2002 Bill Nottingham <notting@redhat.com> 2.1.10-3
454028
- use %%{_libdir}
454028
- own /usr/include/pci
454028
- build library with -fPIC
454028
fd288c
* Mon Jul  8 2002 Bill Nottingham <notting@redhat.com> 2.1.10-2
454028
- don't build with -fomit-frame-pointer
454028
454028
* Mon Jun 24 2002 Bill Nottingham <notting@redhat.com> 2.1.10-1
454028
- update to 2.1.10
454028
454028
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
454028
- automated rebuild
454028
454028
* Mon Jun 17 2002 Bill Nottingham <notting@redhat.com> 2.1.9-4
454028
- don't forcibly strip binaries
454028
454028
* Thu May 23 2002 Tim Powers <timp@redhat.com>
454028
- automated rebuild
454028
454028
* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
454028
- rebuild
454028
454028
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
454028
- require hwdata now that pci.ids is there
454028
454028
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
454028
- automated rebuild
454028
454028
* Sun Dec 30 2001 Florian La Roche <Florian.LaRoche@redhat.de>
454028
- man page is now owned by root
454028
454028
* Wed Oct 17 2001 Bill Nottingham <notting@redhat.com>
454028
- dump all the patches, ship pci.ids direct out of sourceforge CVS
454028
454028
* Wed Sep 26 2001 Bill Nottingham <notting@redhat.com>
454028
- broadcom bcm5820 id (#53592)
454028
454028
* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
454028
- more ids
454028
454028
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
454028
- add newline in printf in PCI-X patch (#49277)
454028
454028
* Mon Jul  9 2001 Bill Nottingham <notting@redhat.com>
454028
- update broadcom patch
454028
- add new ids from 2.4.6
454028
454028
* Mon May 28 2001 Bill Nottingham <notting@redhat.com>
454028
- add a couple of e1000 ids
454028
454028
* Thu Mar 22 2001 Bill Nottingham <notting@redhat.com>
454028
- another megaraid id
454028
454028
* Wed Mar 21 2001 Bill Nottingham <notting@redhat.com>
454028
- another megaraid id
454028
454028
* Wed Mar 14 2001 Preston Brown <pbrown@redhat.com>
454028
- LSI SCSI PCI id
454028
454028
* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
454028
- fix formatting problems
454028
454028
* Wed Feb 21 2001 Preston Brown <pbrown@redhat.com>
454028
- add IBM ServeRAID entries
454028
454028
* Tue Feb 20 2001 Preston Brown <pbrown@redhat.com>
454028
- i860 entries.
454028
454028
* Mon Feb 19 2001 Helge Deller <hdeller@redhat.de>
454028
- added various pci ids 
454028
454028
* Fri Feb  2 2001 Bill Nottingham <notting@redhat.com>
454028
- fix mishap in fixing mishap
454028
454028
* Thu Feb  1 2001 Bill Nottingham <notting@redhat.com>
454028
- fix apparent mishap in pci.ids update from kernel (#25520)
454028
454028
* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
454028
- pci.ids updates
454028
454028
* Tue Dec 12 2000 Bill Nottingham <notting@redhat.com>
454028
- big pile of pci.ids updates
454028
454028
* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
454028
- clean up patches to not generate badly-formatted files
454028
454028
* Tue Jul 25 2000 Preston Brown <pbrown@redhat.com>
454028
- Vortex fixes laroche originally applied on kudzu moved here.
454028
454028
* Fri Jul 14 2000 Preston Brown <pbrown@redhat.com>
454028
- pci ids for i815, new ati hardware
454028
454028
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
454028
- automatic rebuild
454028
454028
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
454028
- yet more IDs
454028
- PCI-X support from Matt Domsch
454028
454028
* Fri Jul  7 2000 Bill Nottingham <notting@redhat.com>
454028
- some more QLogic ids
454028
454028
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
454028
- more IDs from Dell
454028
454028
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.8
454028
454028
* Fri Apr 21 2000 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.7
454028
454028
* Mon Apr 17 2000 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.6
454028
454028
* Fri Mar  3 2000 Bill Nottingham <notting@redhat.com>
454028
- add a couple of ids
454028
454028
* Mon Feb 14 2000 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.5
454028
454028
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
454028
- handle compressed man pages
454028
454028
* Mon Jan 24 2000 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.4
454028
454028
* Thu Jan 20 2000 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.3
454028
454028
* Fri Dec 24 1999 Bill Nottingham <notting@redhat.com>
454028
- update to 2.1.2
454028
454028
* Tue Jun 29 1999 Bill Nottingham <notting@redhat.com>
454028
- add -devel package
454028
454028
* Thu May 20 1999 Bill Nottingham <notting@redhat.com>
454028
- update to 2.0
454028
454028
* Mon Apr 19 1999 Jakub Jelinek <jj@ultra.linux.cz>
454028
- update to 1.99.5
454028
- fix sparc64 operation
454028
454028
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
454028
- auto rebuild in the new build environment (release 2)
454028
454028
* Thu Feb  4 1999 Bill Nottingham <notting@redhat.com>
454028
- initial build