Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
583b12979c |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/sg3_utils-1.44.tar.xz
|
sg3_utils-1.48.tar.xz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
b00dae1fc53fc4d31202f7a590233d98c1dda4d8 SOURCES/sg3_utils-1.44.tar.xz
|
|
@ -1,14 +0,0 @@
|
|||||||
#
|
|
||||||
# Blacklist specific USB devices
|
|
||||||
#
|
|
||||||
# don't inquire sn and di on broken devices (https://bugzilla.suse.com/show_bug.cgi?id=840054)
|
|
||||||
|
|
||||||
ACTION!="add|change", GOTO="usb_blacklist_end"
|
|
||||||
KERNEL!="sd*[!0-9]|sr*", GOTO="usb_blacklist_end"
|
|
||||||
|
|
||||||
# unkown device
|
|
||||||
ATTRS{idVendor}=="0aec", ATTRS{idProduct}=="3260", ENV{ID_SCSI_INQUIRY}="1"
|
|
||||||
# Sony/JMicron port replicator
|
|
||||||
ATTRS{idVendor}=="054c", ATTRS{idProduct}=="06a0", ENV{ID_SCSI_INQUIRY}="1"
|
|
||||||
|
|
||||||
LABEL="usb_blacklist_end"
|
|
@ -1,17 +0,0 @@
|
|||||||
#
|
|
||||||
# FC WWPN-based by-path links
|
|
||||||
#
|
|
||||||
|
|
||||||
ACTION!="add|change", GOTO="fc_wwpn_end"
|
|
||||||
KERNEL!="sd*", GOTO="fc_wwpn_end"
|
|
||||||
|
|
||||||
ENV{DEVTYPE}=="disk", IMPORT{program}="fc_wwpn_id %p"
|
|
||||||
ENV{DEVTYPE}=="partition", IMPORT{parent}="FC_*"
|
|
||||||
ENV{FC_TARGET_WWPN}!="?*", GOTO="fc_wwpn_end"
|
|
||||||
ENV{FC_INITIATOR_WWPN}!="?*", GOTO="fc_wwpn_end"
|
|
||||||
ENV{FC_TARGET_LUN}!="?*", GOTO="fc_wwpn_end"
|
|
||||||
|
|
||||||
ENV{DEVTYPE}=="disk", SYMLINK+="disk/by-path/fc-$env{FC_INITIATOR_WWPN}-$env{FC_TARGET_WWPN}-lun-$env{FC_TARGET_LUN}"
|
|
||||||
ENV{DEVTYPE}=="partition", SYMLINK+="disk/by-path/fc-$env{FC_INITIATOR_WWPN}-$env{FC_TARGET_WWPN}-lun-$env{FC_TARGET_LUN}-part%n"
|
|
||||||
|
|
||||||
LABEL="fc_wwpn_end"
|
|
File diff suppressed because it is too large
Load Diff
@ -1,25 +0,0 @@
|
|||||||
From 37b8af8278bba0b116b579950218f2e610a2ab2b Mon Sep 17 00:00:00 2001
|
|
||||||
From: jtpittman195 <jpittman@redhat.com>
|
|
||||||
Date: Fri, 4 Oct 2019 10:58:24 -0400
|
|
||||||
Subject: [PATCH] fc_wwpn_id: add condition to FC_TARGET_LUN return
|
|
||||||
|
|
||||||
If there is no relevant fc_remote_port or fc_host found, there is no need to return the target_lun number. Returning with no condition causes a FC_TARGET_LUN value to be present in the udev database for devices that are not fibre attached. Add condition to check.
|
|
||||||
---
|
|
||||||
scripts/fc_wwpn_id | 4 +++-
|
|
||||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/scripts/fc_wwpn_id b/scripts/fc_wwpn_id
|
|
||||||
index c8d0189..b05c5e8 100644
|
|
||||||
--- a/scripts/fc_wwpn_id
|
|
||||||
+++ b/scripts/fc_wwpn_id
|
|
||||||
@@ -38,7 +38,9 @@ while [ -n "$d" ] ; do
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
-echo "FC_TARGET_LUN=$target_lun"
|
|
||||||
+if [ -n "$rport_wwpn" ] || [ -n "$host_wwpn" ] ; then
|
|
||||||
+ echo "FC_TARGET_LUN=$target_lun"
|
|
||||||
+fi
|
|
||||||
|
|
||||||
if [ -n "$rport_wwpn" ] ; then
|
|
||||||
echo "FC_TARGET_WWPN=$rport_wwpn"
|
|
@ -1,28 +0,0 @@
|
|||||||
From c683e6e2bc62b43c140934b919323d107b0a48cb Mon Sep 17 00:00:00 2001
|
|
||||||
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
||||||
Date: Tue, 28 May 2019 16:06:06 +0200
|
|
||||||
Subject: [PATCH] sg_raw: do not print error about device not specified on
|
|
||||||
version request
|
|
||||||
|
|
||||||
---
|
|
||||||
src/sg_raw.c | 7 +++++++
|
|
||||||
1 file changed, 7 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/src/sg_raw.c b/src/sg_raw.c
|
|
||||||
index 33a85f7c..453ff42a 100644
|
|
||||||
--- a/src/sg_raw.c
|
|
||||||
+++ b/src/sg_raw.c
|
|
||||||
@@ -440,6 +440,13 @@ parse_cmd_line(struct opts_t * op, int argc, char *argv[])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
+ if (op->version_given
|
|
||||||
+#ifdef DEBUG
|
|
||||||
+ && ! op->verbose_given
|
|
||||||
+#endif
|
|
||||||
+ )
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
if (optind >= argc) {
|
|
||||||
pr2serr("No device specified\n\n");
|
|
||||||
return SG_LIB_SYNTAX_ERROR;
|
|
@ -1,95 +0,0 @@
|
|||||||
From a00692315686c7bc061010aa215bcb381181758f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Douglas Gilbert <dgilbert@interlog.com>
|
|
||||||
Date: Wed, 10 Oct 2018 06:50:03 +0000
|
|
||||||
Subject: [PATCH] sg_ses: bug: --page= being overridden when --control and
|
|
||||||
--data= also given; fix; sg_opcodes: expand MLU (18-102r0)
|
|
||||||
|
|
||||||
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@793 6180dd3e-e324-4e3e-922d-17de1ae2f315
|
|
||||||
|
|
||||||
diff --git a/src/sg_ses.c b/src/sg_ses.c
|
|
||||||
index abb1feac..0cce8bd1 100644
|
|
||||||
--- a/src/sg_ses.c
|
|
||||||
+++ b/src/sg_ses.c
|
|
||||||
@@ -70,7 +70,7 @@ static const char * version_str = "2.43 20180810"; /* ses4r02 */
|
|
||||||
#define ELEM_DESC_DPC 0x7
|
|
||||||
#define SHORT_ENC_STATUS_DPC 0x8
|
|
||||||
#define ENC_BUSY_DPC 0x9
|
|
||||||
-#define ADD_ELEM_STATUS_DPC 0xa
|
|
||||||
+#define ADD_ELEM_STATUS_DPC 0xa /* Additional Element Status dpage code */
|
|
||||||
#define SUBENC_HELP_TEXT_DPC 0xb
|
|
||||||
#define SUBENC_STRING_DPC 0xc
|
|
||||||
#define SUPPORTED_SES_DPC 0xd /* should be 0x1 <= dpc <= 0x2f */
|
|
||||||
@@ -108,6 +108,7 @@ static const char * version_str = "2.43 20180810"; /* ses4r02 */
|
|
||||||
#define SAS_CONNECTOR_ETC 0x19
|
|
||||||
#define LAST_ETC SAS_CONNECTOR_ETC /* adjust as necessary */
|
|
||||||
|
|
||||||
+#define TPROTO_PCIE_PS_NVME 1 /* NVMe regarded as subset of PCIe */
|
|
||||||
#define NUM_ETC (LAST_ETC + 1)
|
|
||||||
|
|
||||||
#define DEF_CLEAR_VAL 0
|
|
||||||
@@ -1378,7 +1379,8 @@ parse_cmd_line(struct opts_t *op, int argc, char *argv[])
|
|
||||||
return SG_LIB_SYNTAX_ERROR;
|
|
||||||
}
|
|
||||||
op->do_raw = 0;
|
|
||||||
- if (op->arr_len > 3) {
|
|
||||||
+ /* struct data_in_desc_t stuff does not apply when --control */
|
|
||||||
+ if (op->do_status && (op->arr_len > 3)) {
|
|
||||||
int off;
|
|
||||||
int pc = 0;
|
|
||||||
const uint8_t * bp = op->data_arr + DATA_IN_OFF;
|
|
||||||
@@ -3476,9 +3478,9 @@ additional_elem_helper(const char * pad, const uint8_t * ae_bp,
|
|
||||||
if (len < 6)
|
|
||||||
break;
|
|
||||||
pcie_pt = (ae_bp[5] >> 5) & 0x7;
|
|
||||||
- if (1 == pcie_pt)
|
|
||||||
+ if (TPROTO_PCIE_PS_NVME == pcie_pt)
|
|
||||||
printf("%sPCIe protocol type: NVMe\n", pad);
|
|
||||||
- else {
|
|
||||||
+ else { /* no others currently defined */
|
|
||||||
printf("%sTransport protocol: PCIe subprotocol=0x%x not "
|
|
||||||
"decoded\n", pad, pcie_pt);
|
|
||||||
if (op->verbose)
|
|
||||||
@@ -3490,7 +3492,7 @@ additional_elem_helper(const char * pad, const uint8_t * ae_bp,
|
|
||||||
ae_bp[5] & 1);
|
|
||||||
printf(", device slot number: %d\n", ae_bp[7]);
|
|
||||||
|
|
||||||
- pcie_vid = sg_get_unaligned_le16(ae_bp + 10);
|
|
||||||
+ pcie_vid = sg_get_unaligned_le16(ae_bp + 10); /* N.B. LE */
|
|
||||||
printf("%sPCIe vendor id: 0x%" PRIx16 "%s\n", pad, pcie_vid,
|
|
||||||
(0xffff == pcie_vid) ? " (not reported)" : "");
|
|
||||||
printf("%sserial number: %.20s\n", pad, ae_bp + 12);
|
|
||||||
@@ -3505,14 +3507,14 @@ additional_elem_helper(const char * pad, const uint8_t * ae_bp,
|
|
||||||
(int)psn_valid, (int)bdf_valid, (int)cid_valid);
|
|
||||||
if (cid_valid) /* N.B. little endian */
|
|
||||||
printf("%s controller id: 0x%" PRIx16 "\n", pad,
|
|
||||||
- sg_get_unaligned_le16(aep + 1));
|
|
||||||
+ sg_get_unaligned_le16(aep + 1)); /* N.B. LEndian */
|
|
||||||
if (bdf_valid)
|
|
||||||
printf("%s bus number: 0x%x, device number: 0x%x, "
|
|
||||||
"function number: 0x%x\n", pad, aep[4],
|
|
||||||
(aep[5] >> 3) & 0x1f, 0x7 & aep[5]);
|
|
||||||
if (psn_valid) /* little endian, top 3 bits assumed zero */
|
|
||||||
printf("%s physical slot number: 0x%" PRIx16 "\n", pad,
|
|
||||||
- 0x1fff & sg_get_unaligned_le16(aep + 6));
|
|
||||||
+ 0x1fff & sg_get_unaligned_le16(aep + 6)); /* N.B. LE */
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
@@ -3524,7 +3526,7 @@ additional_elem_helper(const char * pad, const uint8_t * ae_bp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
-/* ADD_ELEM_STATUS_DPC [0xa]
|
|
||||||
+/* ADD_ELEM_STATUS_DPC [0xa] Additional Element Status dpage
|
|
||||||
* Previously called "Device element status descriptor". Changed "device"
|
|
||||||
* to "additional" to allow for SAS expander and SATA devices */
|
|
||||||
static void
|
|
||||||
@@ -5704,7 +5706,7 @@ main(int argc, char * argv[])
|
|
||||||
uint16_t oacs;
|
|
||||||
|
|
||||||
nvmsr = enc_stat_rsp[253];
|
|
||||||
- oacs = sg_get_unaligned_le16(enc_stat_rsp + 256);
|
|
||||||
+ oacs = sg_get_unaligned_le16(enc_stat_rsp + 256); /* N.B. LE */
|
|
||||||
if (vb > 3)
|
|
||||||
pr2serr("NVMe Identify ctl response: nvmsr=%u, oacs=0x%x\n",
|
|
||||||
nvmsr, oacs);
|
|
@ -1,24 +0,0 @@
|
|||||||
From 116e665ddb7b38bb8f7065ddb08192bd3551897d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
||||||
Date: Tue, 26 Feb 2019 16:45:59 +0100
|
|
||||||
Subject: [PATCH] sg_turs: fix help invocation in the old mode
|
|
||||||
|
|
||||||
In the old mode the usage was printed out twice when called
|
|
||||||
by `sg_turs -O -?`.
|
|
||||||
---
|
|
||||||
src/sg_turs.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/sg_turs.c b/src/sg_turs.c
|
|
||||||
index 8c6e3792..a318d22c 100644
|
|
||||||
--- a/src/sg_turs.c
|
|
||||||
+++ b/src/sg_turs.c
|
|
||||||
@@ -252,7 +252,7 @@ old_parse_cmd_line(struct opts_t * op, int argc, char * argv[])
|
|
||||||
op->version_given = true;
|
|
||||||
break;
|
|
||||||
case '?':
|
|
||||||
- usage_old();
|
|
||||||
+ ++op->do_help;
|
|
||||||
return 0;
|
|
||||||
default:
|
|
||||||
jmp_out = true;
|
|
@ -1,32 +1,22 @@
|
|||||||
%global rescan_script rescan-scsi-bus.sh
|
%global rescan_script rescan-scsi-bus.sh
|
||||||
|
%global _udevlibdir %{_prefix}/lib/udev
|
||||||
|
|
||||||
Summary: Utilities for devices that use SCSI command sets
|
Summary: Utilities for devices that use SCSI command sets
|
||||||
Name: sg3_utils
|
Name: sg3_utils
|
||||||
Version: 1.44
|
Version: 1.48
|
||||||
Release: 6%{?dist}
|
Release: 7%{?dist}
|
||||||
License: GPLv2+ and BSD
|
License: GPL-2.0-or-later AND BSD-2-Clause
|
||||||
Group: Applications/System
|
URL: https://sg.danny.cz/sg/sg3_utils.html
|
||||||
Source0: http://sg.danny.cz/sg/p/sg3_utils-%{version}.tar.xz
|
Source0: https://sg.danny.cz/sg/p/sg3_utils-%{version}.tar.xz
|
||||||
Source2: scsi-rescan.8
|
Source1: scsi-rescan.8
|
||||||
Source10: 40-usb-blacklist.rules
|
|
||||||
Source11: 59-fc-wwpn-id.rules
|
|
||||||
Patch0: BZ_1633235-sg3_utils-1.44-covscan-fix.patch
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1683343
|
|
||||||
# sg_turs: improper usage show
|
|
||||||
Patch1: sg_turs-help.patch
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1627657
|
|
||||||
# sg_raw -V fail
|
|
||||||
Patch2: sg_raw-version.patch
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1760847
|
|
||||||
# FC_TARGET_LUN attribute assigned for non FC device
|
|
||||||
Patch3: fc_wwpn_id-non_FC-devices.patch
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2078107
|
|
||||||
# sg_ses: --page= is incorrectly overridden when --control and --data= are also used
|
|
||||||
Patch4: sg_ses-1.45-page_control_data_args.patch
|
|
||||||
URL: http://sg.danny.cz/sg/sg3_utils.html
|
|
||||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
||||||
BuildRequires: systemd
|
|
||||||
|
|
||||||
|
# https://github.com/doug-gilbert/sg3_utils/pull/47
|
||||||
|
Patch0: udev_rules-avoid_spurious_warning_for_non-SCSI_devices.patch
|
||||||
|
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: systemd
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -45,98 +35,181 @@ and the incorrect usage of them may render your system inoperable.
|
|||||||
|
|
||||||
%package libs
|
%package libs
|
||||||
Summary: Shared library for %{name}
|
Summary: Shared library for %{name}
|
||||||
Group: System Environment/Libraries
|
|
||||||
|
|
||||||
%description libs
|
%description libs
|
||||||
This package contains the shared library for %{name}.
|
This package contains the shared library for %{name}.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development library and header files for the sg3_utils library
|
Summary: Development library and header files for the sg3_utils library
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains the %{name} library and its header files for
|
This package contains the %{name} library and its header files for
|
||||||
developing applications.
|
developing applications.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p 1
|
%autosetup -p 1
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static --disable-nvme-supp
|
||||||
|
|
||||||
# Don't use rpath!
|
# Don't use rpath!
|
||||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
# Fix filename references to other udev rules
|
||||||
|
sed -i 's|55-scsi-sg3_id.rules|61-scsi-sg3_id.rules|' scripts/*.rules
|
||||||
|
sed -i 's|58-scsi-sg3_symlink.rules|63-scsi-sg3_symlink.rules|' scripts/*.rules
|
||||||
|
sed -i 's|59-scsi-cciss_id.rules|65-scsi-cciss_id.rules|' scripts/*.rules
|
||||||
|
sed -i 's|59-fc-wwpn-id.rules|63-fc-wwpn-id.rules|' scripts/*.rules
|
||||||
|
|
||||||
|
%make_build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
%make_install
|
||||||
rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.la
|
rm -rf %{buildroot}%{_libdir}/*.la
|
||||||
|
|
||||||
install -p -m 755 scripts/%{rescan_script} $RPM_BUILD_ROOT%{_bindir}
|
install -p -m 755 scripts/%{rescan_script} %{buildroot}%{_bindir}
|
||||||
( cd $RPM_BUILD_ROOT%{_bindir}; ln -sf %{rescan_script} scsi-rescan )
|
( cd %{buildroot}%{_bindir}; ln -sf %{rescan_script} scsi-rescan )
|
||||||
|
|
||||||
install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_mandir}/man8
|
install -p -m 644 %{SOURCE1} %{buildroot}%{_mandir}/man8
|
||||||
|
|
||||||
# install all extra udev rules
|
# install all extra udev rules
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_udevrulesdir}
|
mkdir -p %{buildroot}%{_udevrulesdir}
|
||||||
mkdir -p $RPM_BUILD_ROOT/usr/lib/udev
|
mkdir -p %{buildroot}%{_udevlibdir}
|
||||||
install -p -m 644 scripts/55-scsi-sg3_id.rules $RPM_BUILD_ROOT%{_udevrulesdir}/61-scsi-sg3_id.rules
|
install -p -m 644 scripts/00-scsi-sg3_config.rules %{buildroot}%{_udevrulesdir}
|
||||||
install -p -m 644 scripts/58-scsi-sg3_symlink.rules $RPM_BUILD_ROOT%{_udevrulesdir}/63-scsi-sg3_symlink.rules
|
install -p -m 644 scripts/40-usb-blacklist.rules %{buildroot}%{_udevrulesdir}
|
||||||
install -p -m 644 %{SOURCE10} $RPM_BUILD_ROOT%{_udevrulesdir}
|
# need to run after 60-persistent-storage.rules
|
||||||
install -p -m 644 %{SOURCE11} $RPM_BUILD_ROOT%{_udevrulesdir}/63-fc-wwpn-id.rules
|
install -p -m 644 scripts/55-scsi-sg3_id.rules %{buildroot}%{_udevrulesdir}/61-scsi-sg3_id.rules
|
||||||
install -p -m 755 scripts/fc_wwpn_id $RPM_BUILD_ROOT/usr/lib/udev
|
# need to run after 62-multipath.rules
|
||||||
|
install -p -m 644 scripts/58-scsi-sg3_symlink.rules %{buildroot}%{_udevrulesdir}/63-scsi-sg3_symlink.rules
|
||||||
|
install -p -m 644 scripts/59-scsi-cciss_id.rules %{buildroot}%{_udevrulesdir}/65-scsi-cciss_id.rules
|
||||||
%post libs -p /sbin/ldconfig
|
install -p -m 644 scripts/59-fc-wwpn-id.rules %{buildroot}%{_udevrulesdir}/63-fc-wwpn-id.rules
|
||||||
|
install -p -m 755 scripts/fc_wwpn_id %{buildroot}%{_udevlibdir}
|
||||||
%postun libs -p /sbin/ldconfig
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc AUTHORS BSD_LICENSE COPYING COVERAGE CREDITS ChangeLog README README.sg_start
|
%license BSD_LICENSE COPYING
|
||||||
%{_bindir}/*
|
%doc AUTHORS COVERAGE CREDITS ChangeLog README README.sg_start
|
||||||
%{_mandir}/man8/*
|
%{_bindir}/scsi_*
|
||||||
|
%{_bindir}/sg_*
|
||||||
|
%{_bindir}/rescan-scsi-bus.sh
|
||||||
|
%{_bindir}/scsi-rescan
|
||||||
|
%{_bindir}/sginfo
|
||||||
|
%{_bindir}/sgm_dd
|
||||||
|
%{_bindir}/sgp_dd
|
||||||
|
%{_mandir}/man8/scsi_*.8*
|
||||||
|
%{_mandir}/man8/sg_*.8*
|
||||||
|
%{_mandir}/man8/rescan-scsi-bus.sh.8*
|
||||||
|
%{_mandir}/man8/scsi-rescan.8*
|
||||||
|
%{_mandir}/man8/sginfo.8*
|
||||||
|
%{_mandir}/man8/sgm_dd.8*
|
||||||
|
%{_mandir}/man8/sgp_dd.8*
|
||||||
|
%{_mandir}/man8/%{name}.8*
|
||||||
|
%{_mandir}/man8/%{name}_json.8*
|
||||||
|
%{_udevrulesdir}/00-scsi-sg3_config.rules
|
||||||
%{_udevrulesdir}/61-scsi-sg3_id.rules
|
%{_udevrulesdir}/61-scsi-sg3_id.rules
|
||||||
%{_udevrulesdir}/63-scsi-sg3_symlink.rules
|
%{_udevrulesdir}/63-scsi-sg3_symlink.rules
|
||||||
%{_udevrulesdir}/63-fc-wwpn-id.rules
|
%{_udevrulesdir}/63-fc-wwpn-id.rules
|
||||||
|
%{_udevrulesdir}/65-scsi-cciss_id.rules
|
||||||
%{_udevrulesdir}/40-usb-blacklist.rules
|
%{_udevrulesdir}/40-usb-blacklist.rules
|
||||||
/usr/lib/udev/*
|
%{_udevlibdir}/fc_wwpn_id
|
||||||
|
|
||||||
%files libs
|
%files libs
|
||||||
%doc BSD_LICENSE COPYING
|
%doc BSD_LICENSE COPYING
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/libsgutils2-%{version}.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/scsi/*.h
|
%{_includedir}/scsi/*.h
|
||||||
%{_libdir}/*.so
|
%{_libdir}/libsgutils2.so
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jun 08 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.44-6
|
* Mon Nov 04 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.48-7
|
||||||
- Fix sg_ses --page argument override when --control and --data are specified (#2078107)
|
- udev rules: avoid spurious warning for non-SCSI devices (RHEL-40861,RHEL-54607)
|
||||||
|
- Install missing 00-scsi-sg3_config.rules
|
||||||
|
- Fix file references to other udev rules
|
||||||
|
|
||||||
* Thu Jan 02 2020 Tomas Bzatek <tbzatek@redhat.com> - 1.44-5
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.48-6
|
||||||
- Reorder the udev rules to run after 60-persistent-storage.rules (RHBZ #1785062)
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
* Tue Dec 10 2019 Tomas Bzatek <tbzatek@redhat.com> - 1.44-4
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.48-5
|
||||||
- Enable supplemental udev rules by default (RHBZ #1746414)
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
* Tue May 28 2019 Tomas Bzatek <tbzatek@redhat.com> - 1.44-3
|
* Tue May 07 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.48-4
|
||||||
|
- Really add gating.yaml
|
||||||
|
|
||||||
|
* Tue May 07 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.48-3
|
||||||
|
- Add gating.yaml
|
||||||
|
|
||||||
|
* Tue May 07 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.48-2
|
||||||
|
- Disable NVMe support
|
||||||
|
|
||||||
|
* Fri Feb 09 2024 Dan Horák <dan@danny.cz> - 1.48-1
|
||||||
|
- update to version 1.48 (rhbz#1944444)
|
||||||
|
|
||||||
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.46-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.46-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.46-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.46-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.46-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.46-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 30 2021 Tomas Bzatek <tbzatek@redhat.com> - 1.46-1
|
||||||
|
- update to version 1.46
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.45-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.45-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 1.45-2
|
||||||
|
- Use make macros
|
||||||
|
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
||||||
|
|
||||||
|
* Thu Mar 12 2020 Dan Horák <dan@danny.cz> - 1.45-1
|
||||||
|
- update to version 1.45 (#1809392)
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.44-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 06 2020 Tomas Bzatek <tbzatek@redhat.com> - 1.44-2
|
||||||
|
- Backport "rescan-scsi-bus.sh: use LUN wildcard in idlist"
|
||||||
|
|
||||||
|
* Fri Jan 03 2020 Tomas Bzatek <tbzatek@redhat.com> - 1.44-1
|
||||||
|
- Rebase to 1.44 release
|
||||||
|
- Enable supplemental udev rules
|
||||||
- Fix sg_turs help invocation in an old mode (#1683343)
|
- Fix sg_turs help invocation in an old mode (#1683343)
|
||||||
- Fix sg_raw printing error about device not specified on version request (#1627657)
|
- Fix sg_raw printing error about device not specified on version request (#1627657)
|
||||||
|
- Fix coverity scan warnings (#1633235)
|
||||||
|
|
||||||
* Fri Sep 28 2018 Gris Ge <fge@redhat.com> - 1.44-2
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-8
|
||||||
- Fix coverity scan warninings (RHBZ#1633235)
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Sep 18 2018 Gris Ge <fge@redhat.com> - 1.44-1
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-7
|
||||||
- Upgrade to 1.44. (RHBZ#1631347)
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Aug 10 2018 Gris Ge <fge@redhat.com> 1.43-0.beta785.1
|
* Mon Jul 16 2018 Dan Horák <dan[at]danny.cz> - 1.42-6
|
||||||
- Upgrade to 1.43 beta r785.
|
- fix build with new glibc - use sysmacros.h for major()/minor()
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-4
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
SHA512 (sg3_utils-1.48.tar.xz) = d4f586ac8a4ba9b5de5885657785e25251c8a42913332d6eca38f92b546c06e8e8aa0553c4b5c04f553cf2d0a9e4f34827f65ba596ef65e43dec36b4345f444a
|
29
udev_rules-avoid_spurious_warning_for_non-SCSI_devices.patch
Normal file
29
udev_rules-avoid_spurious_warning_for_non-SCSI_devices.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
From 4957a561867b4f363b0711bb5e0a3292f3067ce7 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Martin Wilck <mwilck@suse.com>
|
||||||
|
Date: Tue, 9 Jan 2024 22:10:09 +0100
|
||||||
|
Subject: [PATCH] udev rules: avoid spurious warning for non-SCSI devices
|
||||||
|
|
||||||
|
The udev rules spit out lots of warnings like this:
|
||||||
|
|
||||||
|
55-scsi-sg3_id.rules[15445]: WARNING: SCSI device loop0 has no device ID, consider changing .SCSI_ID_SERIAL_SRC in 00-scsi-sg3_config.rules
|
||||||
|
|
||||||
|
Because the warning code had erroneously been inserted in the
|
||||||
|
"sg3_utils_id_end" clause. Fix it.
|
||||||
|
|
||||||
|
Fixes: d7b8da0 ("udev rules: restrict use of ambiguous device IDs patchset")
|
||||||
|
---
|
||||||
|
scripts/55-scsi-sg3_id.rules | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/scripts/55-scsi-sg3_id.rules b/scripts/55-scsi-sg3_id.rules
|
||||||
|
index 5e9732d6..f3ddb065 100644
|
||||||
|
--- a/scripts/55-scsi-sg3_id.rules
|
||||||
|
+++ b/scripts/55-scsi-sg3_id.rules
|
||||||
|
@@ -147,6 +147,6 @@ ENV{SCSI_IDENT_SERIAL}=="?*", ENV{.SCSI_ID_SERIAL_SRC}=="*S*", \
|
||||||
|
ENV{ID_SERIAL}="S$env{SCSI_VENDOR}_$env{SCSI_MODEL}_$env{SCSI_IDENT_SERIAL}", \
|
||||||
|
ENV{ID_SERIAL_SHORT}="$env{SCSI_IDENT_SERIAL}"
|
||||||
|
|
||||||
|
-LABEL="sg3_utils_id_end"
|
||||||
|
ENV{ID_SERIAL}!="?*", ENV{DEVTYPE}=="disk", \
|
||||||
|
PROGRAM="/bin/logger -t 55-scsi-sg3_id.rules -p daemon.warning \"WARNING: SCSI device %k has no device ID, consider changing .SCSI_ID_SERIAL_SRC in 00-scsi-sg3_config.rules\""
|
||||||
|
+LABEL="sg3_utils_id_end"
|
Loading…
Reference in New Issue
Block a user