Updated the sources to 0.3.11 version

This commit is contained in:
praveenp 2011-10-04 15:04:49 -05:00
parent caab12ab70
commit b82a465b7b
3 changed files with 28 additions and 2 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
/biosdevname-0.3.6.tar.gz
/biosdevname-0.3.7.tar.gz
/biosdevname-0.3.8.tar.gz
/biosdevname-0.3.11.tar.gz

View File

@ -1,5 +1,5 @@
Name: biosdevname
Version: 0.3.8
Version: 0.3.11
Release: 1%{?dist}
Summary: Udev helper for naming devices per BIOS names
@ -15,6 +15,10 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: pciutils-devel, zlib-devel
# to figure out how to name the rules file
BuildRequires: udev
#To generate the configure script
BuildRequires: autoconf
BuildRequires: automake
# for ownership of /etc/udev/rules.d
Requires: udev
@ -29,6 +33,10 @@ name (e.g. eth0).
%setup -q
%build
#If configure script doesn't exist generate it with autogen script
[ -e ./configure ] || ./autogen.sh --no-configure
# this is a udev rule, so it needs to live in / rather than /usr
%configure --disable-rpath --prefix=/ --sbindir=/sbin
make %{?_smp_mflags}
@ -51,6 +59,23 @@ rm -rf %{buildroot}
%changelog
* Tue Oct 4 2011 Praveen K Paladugu <praveen_paladugu@dell.com> - 0.3.11-1
- Updating the sources to 0.3.11 version. Following are the changes:
- Fix man page for PCI slot naming
- Fix clearing of buffer for NPAR/SRIOV naming
- Add --nopirq and --smbios options to manpage.
- Verify length of VPD on network device
- Close file handle on sysfs read
- Fix naming policy for NPAR devices.
Match each PCI device to its VPD 'physical' device to get correct index
- Exclude building on ia64 arch
- Add support functions for determining PCIE slot
- Scan full path to parent when getting PCIE slot
- Fix NPAR naming for add-in cards
- Don't display _vf suffix on NPAR devices with single function
- Fix PCIe/PIRQ slot mapping
* Thu Apr 21 2011 Praveen K Paladugu <praveen_paladugu@dell.com> - 0.3.8-1
- Add changes to parse VPD structure for device mapping on NPAR devices
- Fix pathname

View File

@ -1 +1 @@
93c7bc3859033534ace6c2556b5b6bba biosdevname-0.3.8.tar.gz
7f805b261b7b03744f1d3b91d830328e biosdevname-0.3.11.tar.gz