Blame SPECS/sg3_utils.spec

1b7cd5
%global rescan_script rescan-scsi-bus.sh
1b7cd5
%global _udevlibdir %{_prefix}/lib/udev
1b7cd5
1b7cd5
Summary: Utilities for devices that use SCSI command sets
1c6479
Name:    sg3_utils
1b7cd5
Version: 1.47
2073b1
Release: 7%{?dist}
1b7cd5
License: GPLv2+ and BSD
1c6479
URL:     https://sg.danny.cz/sg/sg3_utils.html
1c6479
Source0: https://sg.danny.cz/sg/p/sg3_utils-%{version}.tar.xz
1b7cd5
Source2: scsi-rescan.8
1b7cd5
2073b1
# https://bugzilla.redhat.com/show_bug.cgi?id=2044433
2073b1
# Covscan fixes
2073b1
Patch0:  sg3_utils-1.48-initialize_sense_buffers.patch
2073b1
Patch1:  sg3_utils-1.48-covscan_fixes.patch
2073b1
# https://bugzilla.redhat.com/show_bug.cgi?id=2036718
2073b1
# sg_readcap man page contains duplicate -R options
2073b1
Patch2:  sg_readcap-man.patch
2073b1
# https://bugzilla.redhat.com/show_bug.cgi?id=2035382
2073b1
# rescan-scsi-bus.sh output shows tab (\t) and newline (\n) characters in output
2073b1
Patch3:  rescan-scsi-bus_printf.patch
2073b1
# https://bugzilla.redhat.com/show_bug.cgi?id=2036005
2073b1
# https://bugzilla.redhat.com/show_bug.cgi?id=2035362
2073b1
# rescan-scsi-bus.sh with "-r" switch deletes all scsi devices, especially boot disk which causes the system to hang
2073b1
Patch4:  rescan-scsi-bus_sg_inq-parse.patch
2073b1
1b7cd5
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
1b7cd5
BuildRequires: make
1b7cd5
BuildRequires: gcc
1b7cd5
BuildRequires: systemd
1b7cd5
1b7cd5
BuildRequires: gettext-devel
1b7cd5
BuildRequires: automake
1b7cd5
BuildRequires: autoconf
1b7cd5
BuildRequires: libtool
1b7cd5
1b7cd5
1b7cd5
%description
1b7cd5
Collection of Linux utilities for devices that use the SCSI command set.
1b7cd5
Includes utilities to copy data based on "dd" syntax and semantics (called
1b7cd5
sg_dd, sgp_dd and sgm_dd); check INQUIRY data and VPD pages (sg_inq); check
1b7cd5
mode and log pages (sginfo, sg_modes and sg_logs); spin up and down
1b7cd5
disks (sg_start); do self tests (sg_senddiag); and various other functions.
1b7cd5
See the README, CHANGELOG and COVERAGE files. Requires the linux kernel 2.4
1b7cd5
series or later. In the 2.4 series SCSI generic device names (e.g. /dev/sg0)
1b7cd5
must be used. In the 2.6 series other device names may be used as
1b7cd5
well (e.g. /dev/sda).
1b7cd5
1b7cd5
Warning: Some of these tools access the internals of your system
1b7cd5
and the incorrect usage of them may render your system inoperable.
1b7cd5
1b7cd5
%package libs
1b7cd5
Summary: Shared library for %{name}
1b7cd5
1b7cd5
%description libs
1b7cd5
This package contains the shared library for %{name}.
1b7cd5
1b7cd5
%package devel
1b7cd5
Summary: Development library and header files for the sg3_utils library
1b7cd5
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
1b7cd5
1b7cd5
%description devel
1b7cd5
This package contains the %{name} library and its header files for
1b7cd5
developing applications.
1b7cd5
1b7cd5
%prep
1c6479
%autosetup -p 1 -n sg3_utils-%{version}
1b7cd5
1b7cd5
%build
1b7cd5
./autogen.sh
1b7cd5
%configure --disable-static
1b7cd5
1b7cd5
# Don't use rpath!
1b7cd5
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
1b7cd5
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
1b7cd5
1b7cd5
%make_build
1b7cd5
1b7cd5
1b7cd5
%install
1b7cd5
%make_install
1b7cd5
rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.la
1b7cd5
1b7cd5
install -p -m 755 scripts/%{rescan_script} $RPM_BUILD_ROOT%{_bindir}
1b7cd5
( cd $RPM_BUILD_ROOT%{_bindir}; ln -sf %{rescan_script} scsi-rescan )
1b7cd5
1b7cd5
install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_mandir}/man8
1b7cd5
1b7cd5
# install all extra udev rules
1b7cd5
mkdir -p $RPM_BUILD_ROOT%{_udevrulesdir}
1b7cd5
mkdir -p $RPM_BUILD_ROOT/usr/lib/udev
1b7cd5
install -p -m 644 scripts/40-usb-blacklist.rules $RPM_BUILD_ROOT%{_udevrulesdir}
1b7cd5
# need to run after 60-persistent-storage.rules
1b7cd5
install -p -m 644 scripts/55-scsi-sg3_id.rules $RPM_BUILD_ROOT%{_udevrulesdir}/61-scsi-sg3_id.rules
1b7cd5
# need to run after 62-multipath.rules
1b7cd5
install -p -m 644 scripts/58-scsi-sg3_symlink.rules $RPM_BUILD_ROOT%{_udevrulesdir}/63-scsi-sg3_symlink.rules
1b7cd5
install -p -m 644 scripts/59-scsi-cciss_id.rules $RPM_BUILD_ROOT%{_udevrulesdir}/65-scsi-cciss_id.rules
1b7cd5
install -p -m 644 scripts/59-fc-wwpn-id.rules $RPM_BUILD_ROOT%{_udevrulesdir}/63-fc-wwpn-id.rules
1b7cd5
install -p -m 755 scripts/fc_wwpn_id $RPM_BUILD_ROOT%{_udevlibdir}
1b7cd5
1b7cd5
%files
1b7cd5
%doc AUTHORS BSD_LICENSE COPYING COVERAGE CREDITS ChangeLog README README.sg_start
1b7cd5
%{_bindir}/*
1b7cd5
%{_mandir}/man8/*
1b7cd5
%{_udevrulesdir}/61-scsi-sg3_id.rules
1b7cd5
%{_udevrulesdir}/63-scsi-sg3_symlink.rules
1b7cd5
%{_udevrulesdir}/63-fc-wwpn-id.rules
1b7cd5
%{_udevrulesdir}/65-scsi-cciss_id.rules
1b7cd5
%{_udevrulesdir}/40-usb-blacklist.rules
1b7cd5
%{_udevlibdir}/fc_wwpn_id
1b7cd5
1b7cd5
%files libs
1b7cd5
%doc BSD_LICENSE COPYING
1b7cd5
%{_libdir}/*.so.*
1b7cd5
1b7cd5
%files devel
1b7cd5
%{_includedir}/scsi/*.h
1b7cd5
%{_libdir}/*.so
1b7cd5
1b7cd5
1b7cd5
%changelog
2073b1
* Thu Jan 27 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.47-7
2073b1
- Fix sg_inq parsing in rescan-scsi-bus.sh (#2036005,#2035362)
2073b1
- Fix rescan-scsi-bus.sh summary print (#2035382)
2073b1
- sg_readcap --zbc man page switch fix (#2036718)
2073b1
- Various Covscan fixes (#2044433)
2073b1
1c6479
* Mon Nov 15 2021 Tomas Bzatek <tbzatek@redhat.com> - 1.47-6
1c6479
- update to stable version 1.47 (svn: r919) (#2011810)
1c6479
1b7cd5
* Wed Aug 18 2021 Tomas Bzatek <tbzatek@redhat.com> - 1.47-5
1b7cd5
- update to pre-release version 1.47 (svn: r908) (#1971681)
1b7cd5
1b7cd5
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.47-4
1b7cd5
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
1b7cd5
  Related: rhbz#1991688
1b7cd5
1b7cd5
* Tue Jun 15 2021 Tomas Bzatek <tbzatek@redhat.com> - 1.47-3
1b7cd5
- update to pre-release version 1.47 (svn: r904) (#1970981)
1b7cd5
1b7cd5
* Thu May 27 2021 Tomas Bzatek <tbzatek@redhat.com> - 1.47-2
1b7cd5
- Rebuild (#1963799)
1b7cd5
1b7cd5
* Mon May 17 2021 Tomas Bzatek <tbzatek@redhat.com> - 1.47-1
1b7cd5
- update to pre-release version 1.47 (svn: r900)
1b7cd5
1b7cd5
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.45-5
1b7cd5
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
1b7cd5
1b7cd5
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.45-4
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1b7cd5
1b7cd5
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.45-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1b7cd5
1b7cd5
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 1.45-2
1b7cd5
- Use make macros
1b7cd5
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
1b7cd5
1b7cd5
* Thu Mar 12 2020 Dan Horák <dan@danny.cz> - 1.45-1
1b7cd5
- update to version 1.45 (#1809392)
1b7cd5
1b7cd5
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.44-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
1b7cd5
1b7cd5
* Mon Jan 06 2020 Tomas Bzatek <tbzatek@redhat.com> - 1.44-2
1b7cd5
- Backport "rescan-scsi-bus.sh: use LUN wildcard in idlist"
1b7cd5
1b7cd5
* Fri Jan 03 2020 Tomas Bzatek <tbzatek@redhat.com> - 1.44-1
1b7cd5
- Rebase to 1.44 release
1b7cd5
- Enable supplemental udev rules
1b7cd5
- Fix sg_turs help invocation in an old mode (#1683343)
1b7cd5
- Fix sg_raw printing error about device not specified on version request (#1627657)
1b7cd5
- Fix coverity scan warnings (#1633235)
1b7cd5
1b7cd5
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-8
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1b7cd5
1b7cd5
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-7
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1b7cd5
1b7cd5
* Mon Jul 16 2018 Dan Horák <dan[at]danny.cz> - 1.42-6
1b7cd5
- fix build with new glibc - use sysmacros.h for major()/minor()
1b7cd5
1b7cd5
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-5
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1b7cd5
1b7cd5
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-4
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1b7cd5
1b7cd5
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1b7cd5
1b7cd5
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.42-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1b7cd5
1b7cd5
* Tue Feb 21 2017 Than Ngo <than@redhat.com> - 1.42-1
1b7cd5
- bz#1306078, update to 1.42
1b7cd5
- bz#1230493, dropped Requires glibc-headers
1b7cd5
1b7cd5
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.41-4
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1b7cd5
1b7cd5
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.41-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1b7cd5
1b7cd5
* Wed Jul 08 2015 David Sommerseth <davids@redhat.com> - 1.41-1
1b7cd5
- updated to version 1.41
1b7cd5
- Corrected day/date mismatches in the changelog
1b7cd5
1b7cd5
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.40-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1b7cd5
1b7cd5
* Sat Dec 06 2014 Dan Horák <dan@danny.cz> - 1.40-1
1b7cd5
- update to version 1.40 (#1164172)
1b7cd5
1b7cd5
* Wed Sep 03 2014 Dan Horák <dan@danny.cz> - 1.39-1
1b7cd5
- update to version 1.39 (#1111893)
1b7cd5
1b7cd5
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.38-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1b7cd5
1b7cd5
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.38-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1b7cd5
1b7cd5
* Fri Apr 18 2014 Dan Horák <dan@danny.cz> - 1.38-1
1b7cd5
- update to version 1.38 (#1083995)
1b7cd5
- rebuild configure for ppc64le (#1079542)
1b7cd5
1b7cd5
* Wed Jan 29 2014 Dan Horák <dan@danny.cz> - 1.37-3
1b7cd5
- fix various man pages (#948463)
1b7cd5
- add man page for the rescan-scsi-bus.sh script
1b7cd5
1b7cd5
* Fri Oct 18 2013 Dan Horák <dan@danny.cz> - 1.37-2
1b7cd5
- include fix for #920687
1b7cd5
1b7cd5
* Wed Oct 16 2013 Dan Horák <dan@danny.cz> - 1.37-1
1b7cd5
- update to version 1.37
1b7cd5
- switch to included rescan-scsi-bus script
1b7cd5
1b7cd5
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.36-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1b7cd5
1b7cd5
* Thu Jun 06 2013 Dan Horák <dan@danny.cz> - 1.36-1
1b7cd5
- update to version 1.36
1b7cd5
- modernize spec
1b7cd5
1b7cd5
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.35-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1b7cd5
1b7cd5
* Mon Jan 21 2013 Dan Horák <dan@danny.cz> - 1.35-1
1b7cd5
- update to version 1.35
1b7cd5
1b7cd5
* Thu Oct 18 2012 Dan Horák <dan@danny.cz> - 1.34-1
1b7cd5
- update to version 1.34
1b7cd5
1b7cd5
* Fri Sep 14 2012 Dan Horák <dan@danny.cz> - 1.33-4
1b7cd5
- add fix for sg3_utils >= 1.32 to the rescan-scsi-bus script
1b7cd5
1b7cd5
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.33-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1b7cd5
1b7cd5
* Wed Apr  4 2012 Dan Horák <dan@danny.cz> - 1.33-2
1b7cd5
- include rescan-scsi-bus script 1.56
1b7cd5
1b7cd5
* Tue Apr  3 2012 Dan Horák <dan@danny.cz> - 1.33-1
1b7cd5
- update to version 1.33
1b7cd5
1b7cd5
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1b7cd5
1b7cd5
* Fri Feb 18 2011 Dan Horák <dan@danny.cz> - 1.31-1
1b7cd5
- update to version 1.31
1b7cd5
1b7cd5
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.29-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1b7cd5
1b7cd5
* Thu Jul  8 2010 Dan Horák <dan@danny.cz> - 1.29-2
1b7cd5
- added license texts into -libs subpackage
1b7cd5
1b7cd5
* Mon Apr 12 2010 Dan Horák <dan@danny.cz> - 1.29-1
1b7cd5
- update to version 1.29
1b7cd5
1b7cd5
* Thu Jan 14 2010 Dan Horák <dan@danny.cz> - 1.28-2
1b7cd5
- include rescan-scsi-bus script 1.35
1b7cd5
- rebase patches and add fix for issue mentioned in #538787
1b7cd5
1b7cd5
* Thu Oct 22 2009 Dan Horák <dan@danny.cz> - 1.28-1
1b7cd5
- update to version 1.28
1b7cd5
- added fixes from RHEL to rescan-scsi-bus.sh
1b7cd5
- added scsi-rescan symlink to the rescan-scsi-bus.sh script
1b7cd5
1b7cd5
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.27-2
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1b7cd5
1b7cd5
* Tue Apr 28 2009 Dan Horák <dan@danny.cz> - 1.27-1
1b7cd5
- update to version 1.27
1b7cd5
- changelog: http://sg.danny.cz/sg/p/sg3_utils.ChangeLog
1b7cd5
1b7cd5
* Tue Mar 31 2009 Dan Horák <dan@danny.cz> - 1.26-4
1b7cd5
- add dependency between the libs subpackage and the main package (#492921)
1b7cd5
1b7cd5
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.26-3
1b7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1b7cd5
1b7cd5
* Mon Nov  3 2008 Dan Horák <dan@danny.cz> - 1.26-2
1b7cd5
- update URL
1b7cd5
- include rescan-scsi-bus script 1.29
1b7cd5
1b7cd5
* Mon Jun 30 2008 Dan Horák <dan@danny.cz> - 1.26-1
1b7cd5
- update to upstream version 1.26
1b7cd5
1b7cd5
* Fri Mar 28 2008 Phil Knirsch <pknirsch@redhat.com> - 1.25-4
1b7cd5
- Dropped really unnecessary Provides of sg_utils (#226414)
1b7cd5
- Use --disable-static in configure (#226414)
1b7cd5
1b7cd5
* Thu Mar 27 2008 Phil Knirsch <pknirsch@redhat.com> - 1.25-3
1b7cd5
- Specfile cleanup, removal of static development libraries (#226414)
1b7cd5
1b7cd5
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.25-2
1b7cd5
- Autorebuild for GCC 4.3
1b7cd5
1b7cd5
* Mon Oct 22 2007 Phil Knirsch <pknirsch@redhat.com> - 1.25-1
1b7cd5
- Fixed URLs
1b7cd5
- Updated to sg3_utils-1.25
1b7cd5
1b7cd5
* Thu Aug 16 2007 Phil Knirsch <pknirsch@redhat.com> - 1.23-2
1b7cd5
- License review and update
1b7cd5
1b7cd5
* Fri Feb 02 2007 Phil Knirsch <pknirsch@redhat.com> - 1.23-1
1b7cd5
- Update to sg3_utils-1.23
1b7cd5
- Updated summary
1b7cd5
1b7cd5
* Mon Nov 13 2006 Phil Knirsch <pknirsch@redhat.com> - 1.22-1
1b7cd5
- Update to sg3_utils-1.22
1b7cd5
1b7cd5
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.20-2.1
1b7cd5
- rebuild
1b7cd5
1b7cd5
* Wed Jun 07 2006 Phil Knirsch <pknirsch@redhat.com> - 1.20-2
1b7cd5
- Fixed rebuild problem on latest toolchain
1b7cd5
- Added missing buildprereqs
1b7cd5
1b7cd5
* Fri May 19 2006 Phil Knirsch <pknirsch@redhat.com> - 1.20-1
1b7cd5
- Update to sg3_utils-1.20.
1b7cd5
1b7cd5
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.19-1.1
1b7cd5
- bump again for double-long bug on ppc(64)
1b7cd5
1b7cd5
* Fri Feb 10 2006 Phil Knirsch <pknirsch@redhat.com> - 1.19-1
1b7cd5
- Update to sg3_utils-1.19.
1b7cd5
- Fixed rebuild problem on 64bit archs.
1b7cd5
1b7cd5
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.17-1.1
1b7cd5
- rebuilt for new gcc4.1 snapshot and glibc changes
1b7cd5
1b7cd5
* Mon Nov 07 2005 Phil Knirsch <pknirsch@redhat.com> 1.17-1
1b7cd5
- Update to sg3-utils-1.17
1b7cd5
- Split package up into 3 subpackages: sg3_utils, devel and libs
1b7cd5
- Some minor updates to the specfile
1b7cd5
1b7cd5
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 1.06-5
1b7cd5
- bump release and rebuild with gcc 4
1b7cd5
1b7cd5
* Fri Feb 18 2005 Phil Knirsch <pknirsch@redhat.com> 1.06-4
1b7cd5
- rebuilt
1b7cd5
1b7cd5
* Tue Aug 03 2004 Phil Knirsch <pknirsch@redhat.com> 1.06-3
1b7cd5
- rebuilt
1b7cd5
1b7cd5
* Thu Mar 11 2004 Tim Powers <timp@redhat.com> 1.06-2
1b7cd5
- rebuild
1b7cd5
1b7cd5
* Wed Feb 18 2004 Phil Knirsch <pknirsch@redhat.com> 1.06-1
1b7cd5
- Initial version for RHEL3 U2.
1b7cd5
1b7cd5
* Fri Jan 09 2004 - dgilbert@interlog.com
1b7cd5
- sg3_utils.spec for mandrake; more sginfo work, sg_scan, sg_logs
1b7cd5
  * sg3_utils-1.06
1b7cd5
1b7cd5
* Wed Nov 12 2003 - dgilbert@interlog.com
1b7cd5
- sg_readcap: sizes; sg_logs: double fetch; sg_map 256 sg devices; sginfo
1b7cd5
  * sg3_utils-1.05
1b7cd5
1b7cd5
* Tue May 13 2003 - dgilbert@interlog.com
1b7cd5
- default sg_turs '-n=' to 1, sg_logs gets '-t' for temperature, CREDITS
1b7cd5
  * sg3_utils-1.04
1b7cd5
1b7cd5
* Wed Apr 02 2003 - dgilbert@interlog.com
1b7cd5
- 6 byte CDBs for sg_modes, sg_start on block devs, sg_senddiag, man pages
1b7cd5
  * sg3_utils-1.03
1b7cd5
1b7cd5
* Wed Jan 01 2003 - dgilbert@interlog.com
1b7cd5
- interwork with block SG_IO, fix in sginfo, '-t' for sg_turs
1b7cd5
  * sg3_utils-1.02
1b7cd5
1b7cd5
* Wed Aug 14 2002 - dgilbert@interlog.com
1b7cd5
- raw switch in sg_inq
1b7cd5
  * sg3_utils-1.01
1b7cd5
1b7cd5
* Sun Jul 28 2002 - dgilbert@interlog.com
1b7cd5
- decode sg_logs pages, add dio to sgm_dd, drop "gen=1" arg, "of=/dev/null"
1b7cd5
  * sg3_utils-1.00
1b7cd5
1b7cd5
* Sun Mar 17 2002 - dgilbert@interlog.com
1b7cd5
- add sg_modes+sg_logs for sense pages, expand sg_inq, add fua+sync to sg_dd++
1b7cd5
  * sg3_utils-0.99
1b7cd5
1b7cd5
* Sat Feb 16 2002 - dgilbert@interlog.com
1b7cd5
- resurrect sg_reset; snprintf cleanup, time,gen+cdbsz args to sg_dd++
1b7cd5
  * sg3_utils-0.98
1b7cd5
1b7cd5
* Sun Dec 23 2001 - dgilbert@interlog.com
1b7cd5
- move isosize to archive directory; now found in util-linux-2.10s and later
1b7cd5
  * sg3_utils-0.97
1b7cd5
1b7cd5
* Fri Dec 21 2001 - dgilbert@interlog.com
1b7cd5
- add sgm_dd, sg_read, sg_simple4 and sg_simple16 [add mmap-ed IO support]
1b7cd5
  * sg3_utils-0.96
1b7cd5
1b7cd5
* Sat Sep 15 2001 - dgilbert@interlog.com
1b7cd5
- sg_map can do inquiry; sg_dd, sgp_dd + sgq_dd dio help
1b7cd5
  * sg3_utils-0.95
1b7cd5
1b7cd5
* Thu Apr 19 2001 - dgilbert@interlog.com
1b7cd5
- add sg_start, improve sginfo and sg_map [Kurt Garloff]
1b7cd5
  * sg3_utils-0.94
1b7cd5
1b7cd5
* Mon Mar 5 2001 - dgilbert@interlog.com
1b7cd5
- add scsi_devfs_scan, add sg_include.h, 'coe' more general in sgp_dd
1b7cd5
  * sg3_utils-0.93
1b7cd5
1b7cd5
* Tue Jan 16 2001 - dgilbert@interlog.com
1b7cd5
- clean sg_err.h include dependencies, bug fixes, Makefile in archive directory
1b7cd5
  * sg3_utils-0.92
1b7cd5
1b7cd5
* Thu Dec 21 2000 - dgilbert@interlog.com
1b7cd5
- signals for sg_dd, man pages and additions for sg_rbuf and isosize
1b7cd5
  * sg3_utils-0.91
1b7cd5
1b7cd5
* Mon Dec 11 2000 - dgilbert@interlog.com
1b7cd5
- Initial creation of package, containing
1b7cd5
  * sg3_utils-0.90