3 Commits

Author SHA256 Message Date
25646e172e Accepting request 1325832 from Base:System
OBS-URL: https://build.opensuse.org/request/show/1325832
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lsvpd?expand=0&rev=66
2026-01-08 14:26:34 +00:00
9cb36e5b76 OBS-URL: https://build.opensuse.org/package/show/Base:System/lsvpd?expand=0&rev=79 2026-01-07 17:56:56 +00:00
772a07d050 - Update to version 1.7.17 (jsc#PED-14567, jsc#PED-14550)
* Add NVME-MI support for VPD data collection from NVMe devices.
  * Enhance tools to display custom VPD for Nvidia-specific adapters.
  * Enhance tools to display FC, CCIN VPD information for Spyre cards.
  * Enhance lscfg verbose output to include Feature Code field display.
  * Resolve critical race conditions that could cause SQLite logic errors
    under concurrent access.
- Update to version 1.7.16
  * Add support for Spyre device VPD data collection and retention
  * Enhance lsvpd to use IPS output for serial numbers and machine type/model
  * Add systemd service support for vpdupdate
  * Improve SCSI page code detection and fix comparison logic
  * Add device information display in tuple format

OBS-URL: https://build.opensuse.org/package/show/Base:System/lsvpd?expand=0&rev=78
2026-01-07 17:45:46 +00:00
4 changed files with 35 additions and 8 deletions

Binary file not shown.

3
lsvpd-1.7.17.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f76c36a46e801ebd6e1f53d06987f148e70c1a4b288da5aba0dce1b3c7b2bf0f
size 100276

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Wed Jan 7 17:31:58 UTC 2026 - Michal Suchanek <msuchanek@suse.de>
- Update to version 1.7.17 (jsc#PED-14567, jsc#PED-14550)
* Add NVME-MI support for VPD data collection from NVMe devices.
* Enhance tools to display custom VPD for Nvidia-specific adapters.
* Enhance tools to display FC, CCIN VPD information for Spyre cards.
* Enhance lscfg verbose output to include Feature Code field display.
* Resolve critical race conditions that could cause SQLite logic errors
under concurrent access.
- Update to version 1.7.16
* Add support for Spyre device VPD data collection and retention
* Enhance lsvpd to use IPS output for serial numbers and machine type/model
* Add systemd service support for vpdupdate
* Improve SCSI page code detection and fix comparison logic
* Add device information display in tuple format
-------------------------------------------------------------------
Mon Oct 2 17:43:06 UTC 2023 - Michal Suchanek <msuchanek@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package lsvpd
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: lsvpd
Version: 1.7.15
Version: 1.7.17
Release: 0
Summary: VPD Hardware Inventory Utilities for Linux
License: GPL-2.0-or-later
@@ -30,6 +30,7 @@ BuildRequires: librtas-devel
BuildRequires: libtool
BuildRequires: libvpd-devel
BuildRequires: sg3_utils-devel
BuildRequires: systemd-rpm-macros
BuildRequires: zlib-devel
Requires: /bin/sed
Recommends: hwdata
@@ -46,8 +47,7 @@ system-specific information. lsmcode lists microcode and firmware
levels.
%prep
%setup -q
%autopatch -p1
%autosetup -p1
%build
export CFLAGS="%{optflags} -UPCI_IDS -DPCI_IDS='\"%{_datadir}/hwdata/pci.ids\"' -UUSB_IDS -DUSB_IDS='\"%{_datadir}/hwdata/usb.ids\"'"
@@ -76,12 +76,21 @@ if [ -e %{_sysconfdir}/udev/rules.d/99-lsvpd.disabled ] ; then
rm %{_sysconfdir}/udev/rules.d/99-lsvpd.disabled
fi
%pre
%service_add_pre vpdupdate.service
%post
if [ -d %{_localstatedir}/lib/lsvpd ] ; then
rm -rf %{_localstatedir}/lib/lsvpd
fi
%{_sbindir}/vpdupdate
exit 0
%service_add_post vpdupdate.service
%preun
%service_del_preun vpdupdate.service
%postun
%service_del_postun vpdupdate.service
%files
%license COPYING
@@ -93,5 +102,6 @@ exit 0
%endif
%attr (755,root,root) %{_sbindir}/*
%{_mandir}/*/*
%{_unitdir}/vpdupdate.service
%changelog