|
|
|
@ -1,21 +1,30 @@
|
|
|
|
|
# secure boot support is for RHEL only
|
|
|
|
|
%if 0%{?rhel} >= 8
|
|
|
|
|
%global signzipl 1
|
|
|
|
|
%bcond_without signzipl
|
|
|
|
|
%else
|
|
|
|
|
%bcond_with signzipl
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
|
%global with_pandoc 1
|
|
|
|
|
%bcond_without pandoc
|
|
|
|
|
%else
|
|
|
|
|
%bcond_with pandoc
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Name: s390utils
|
|
|
|
|
Summary: Utilities and daemons for IBM z Systems
|
|
|
|
|
Version: 2.25.0
|
|
|
|
|
Release: 4%{?dist}
|
|
|
|
|
Version: 2.33.1
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Epoch: 2
|
|
|
|
|
License: MIT
|
|
|
|
|
ExclusiveArch: s390 s390x
|
|
|
|
|
# MIT covers nearly all the files, except init files
|
|
|
|
|
License: MIT AND LGPL-2.1-or-later
|
|
|
|
|
URL: https://github.com/ibm-s390-linux/s390-tools
|
|
|
|
|
Source0: https://github.com/ibm-s390-linux/s390-tools/archive/v%{version}.tar.gz#/s390-tools-%{version}.tar.gz
|
|
|
|
|
# To create the vendor tarball:
|
|
|
|
|
# tar xf s390-tools-%%{version}.tar.gz ; pushd s390-tools-%%{version}/rust ; \
|
|
|
|
|
# rm -f Cargo.lock && cargo vendor && \
|
|
|
|
|
# tar Jvcf ../../s390-tools-%%{version}-rust-vendor.tar.xz vendor/ ; popd
|
|
|
|
|
Source1: s390-tools-%{version}-rust-vendor.tar.xz
|
|
|
|
|
Source5: https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/zfcpconf.sh
|
|
|
|
|
Source7: https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/zfcp.udev
|
|
|
|
|
Source12: https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/dasd.udev
|
|
|
|
@ -29,7 +38,7 @@ Source23: 20-zipl-kernel.install
|
|
|
|
|
Source24: 52-zipl-rescue.install
|
|
|
|
|
Source25: 91-zipl.install
|
|
|
|
|
|
|
|
|
|
%if 0%{?signzipl}
|
|
|
|
|
%if %{with signzipl}
|
|
|
|
|
%define pesign_name redhatsecureboot302
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
@ -38,8 +47,18 @@ Patch0: s390-tools-zipl-invert-script-options.patch
|
|
|
|
|
Patch1: s390-tools-zipl-blscfg-rpm-nvr-sort.patch
|
|
|
|
|
|
|
|
|
|
# upstream fixes/updates
|
|
|
|
|
Patch100: s390utils-%%{version}-rhel.patch
|
|
|
|
|
Patch100: s390utils-%{version}-rhel.patch
|
|
|
|
|
|
|
|
|
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
|
|
|
|
ExcludeArch: %{ix86}
|
|
|
|
|
|
|
|
|
|
# Add Provides for upstream name
|
|
|
|
|
Provides: s390-tools = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%ifarch s390x
|
|
|
|
|
#
|
|
|
|
|
# s390x/native package structure
|
|
|
|
|
#
|
|
|
|
|
Requires: s390utils-core = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: s390utils-base = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: s390utils-osasnmpd = %{epoch}:%{version}-%{release}
|
|
|
|
@ -47,9 +66,48 @@ Requires: s390utils-cpuplugd = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: s390utils-mon_statd = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: s390utils-iucvterm = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: s390utils-ziomon = %{epoch}:%{version}-%{release}
|
|
|
|
|
%else
|
|
|
|
|
#
|
|
|
|
|
# multiarch package structure
|
|
|
|
|
#
|
|
|
|
|
Requires: s390utils-se-data = %{epoch}:%{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
BuildRequires: glib2-devel
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
BuildRequires: libcurl-devel
|
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
|
BuildRequires: rust-toolset
|
|
|
|
|
%else
|
|
|
|
|
BuildRequires: crate(anstream)
|
|
|
|
|
BuildRequires: crate(anstyle-query)
|
|
|
|
|
BuildRequires: crate(anyhow)
|
|
|
|
|
BuildRequires: crate(byteorder)
|
|
|
|
|
BuildRequires: crate(cfg-if)
|
|
|
|
|
BuildRequires: crate(clap)
|
|
|
|
|
BuildRequires: crate(clap_complete)
|
|
|
|
|
BuildRequires: crate(clap_derive)
|
|
|
|
|
BuildRequires: crate(colorchoice)
|
|
|
|
|
BuildRequires: crate(curl)
|
|
|
|
|
BuildRequires: crate(is-terminal)
|
|
|
|
|
BuildRequires: crate(lazy_static)
|
|
|
|
|
BuildRequires: crate(libc)
|
|
|
|
|
BuildRequires: crate(log)
|
|
|
|
|
BuildRequires: crate(mockito)
|
|
|
|
|
BuildRequires: crate(openssl)
|
|
|
|
|
BuildRequires: crate(openssl-probe)
|
|
|
|
|
BuildRequires: crate(serde)
|
|
|
|
|
BuildRequires: crate(serde_derive)
|
|
|
|
|
BuildRequires: crate(serde_test)
|
|
|
|
|
BuildRequires: crate(serde_yaml)
|
|
|
|
|
BuildRequires: crate(strsim)
|
|
|
|
|
BuildRequires: crate(terminal_size)
|
|
|
|
|
BuildRequires: crate(thiserror)
|
|
|
|
|
BuildRequires: crate(zerocopy)
|
|
|
|
|
BuildRequires: rust-packaging
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This is a meta package for installing the default s390-tools sub packages.
|
|
|
|
@ -60,27 +118,23 @@ The s390utils packages contain a set of user space utilities that should to
|
|
|
|
|
be used together with the zSeries (s390) Linux kernel and device drivers.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n s390-tools-%{version}
|
|
|
|
|
|
|
|
|
|
# Fedora/RHEL changes
|
|
|
|
|
%patch0 -p1 -b .zipl-invert-script-options
|
|
|
|
|
%patch1 -p1 -b .blscfg-rpm-nvr-sort
|
|
|
|
|
|
|
|
|
|
# upstream fixes/updates
|
|
|
|
|
%patch100 -p1
|
|
|
|
|
|
|
|
|
|
# drop -Werror from genprotimg to allow building with GCC 12
|
|
|
|
|
sed -i.bak -e 's/-Werror//g' genprotimg/src/Makefile genprotimg/boot/Makefile
|
|
|
|
|
|
|
|
|
|
# remove --strip from install
|
|
|
|
|
find . -name Makefile | xargs sed -i 's/$(INSTALL) -s/$(INSTALL)/g'
|
|
|
|
|
%autosetup -n s390-tools-%{version} -p1
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
pushd rust
|
|
|
|
|
tar xf %{SOURCE1}
|
|
|
|
|
%cargo_prep -v vendor
|
|
|
|
|
popd
|
|
|
|
|
%else
|
|
|
|
|
%cargo_prep
|
|
|
|
|
%endif
|
|
|
|
|
rm ./rust/Cargo.lock
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
make \
|
|
|
|
|
CFLAGS="%{build_cflags}" CXXFLAGS="%{build_cxxflags}" LDFLAGS="%{build_ldflags}" \
|
|
|
|
|
HAVE_DRACUT=1 \
|
|
|
|
|
%if 0%{?with_pandoc}
|
|
|
|
|
%if %{with pandoc}
|
|
|
|
|
ENABLE_DOC=1 \
|
|
|
|
|
%endif
|
|
|
|
|
NO_PIE_LDFLAGS="" \
|
|
|
|
@ -88,11 +142,19 @@ make \
|
|
|
|
|
DISTRELEASE=%{release} \
|
|
|
|
|
V=1
|
|
|
|
|
|
|
|
|
|
pushd rust
|
|
|
|
|
%cargo_license_summary
|
|
|
|
|
%{cargo_license} > LICENSE.dependencies
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%cargo_vendor_manifest
|
|
|
|
|
%endif
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
make install \
|
|
|
|
|
HAVE_DRACUT=1 \
|
|
|
|
|
%if 0%{?with_pandoc}
|
|
|
|
|
%if %{with pandoc}
|
|
|
|
|
ENABLE_DOC=1 \
|
|
|
|
|
%endif
|
|
|
|
|
DESTDIR=%{buildroot} \
|
|
|
|
@ -101,8 +163,12 @@ make install \
|
|
|
|
|
DISTRELEASE=%{release} \
|
|
|
|
|
V=1
|
|
|
|
|
|
|
|
|
|
%ifarch s390x
|
|
|
|
|
#
|
|
|
|
|
# s390x/native specific %%install section
|
|
|
|
|
#
|
|
|
|
|
# sign the stage3 bootloader
|
|
|
|
|
%if 0%{?signzipl}
|
|
|
|
|
%if %{with signzipl}
|
|
|
|
|
if [ -x /usr/bin/rpm-sign ]; then
|
|
|
|
|
pushd %{buildroot}/lib/s390-tools/
|
|
|
|
|
rpm-sign --key "%{pesign_name}" --lkmsign stage3.bin --output stage3.signed
|
|
|
|
@ -160,17 +226,65 @@ install -p -m 644 %{SOURCE17} %{buildroot}%{_udevrulesdir}/81-ccw.rules
|
|
|
|
|
|
|
|
|
|
# zipl.conf to be ghosted
|
|
|
|
|
touch %{buildroot}%{_sysconfdir}/zipl.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%ifarch s390x
|
|
|
|
|
#
|
|
|
|
|
# s390x/native main %%files section
|
|
|
|
|
#
|
|
|
|
|
%files
|
|
|
|
|
%doc README.md
|
|
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
#
|
|
|
|
|
# multiarch %%files section
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc README.md
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%license rust/LICENSE.dependencies
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%license rust/cargo-vendor.txt
|
|
|
|
|
%endif
|
|
|
|
|
%{_bindir}/genprotimg
|
|
|
|
|
%{_bindir}/pvapconfig
|
|
|
|
|
%{_bindir}/pvattest
|
|
|
|
|
%{_bindir}/pvextract-hdr
|
|
|
|
|
%{_bindir}/pvsecret
|
|
|
|
|
%{_mandir}/man1/genprotimg.1*
|
|
|
|
|
%{_mandir}/man1/pvapconfig.1*
|
|
|
|
|
%{_mandir}/man1/pvattest.1*
|
|
|
|
|
%{_mandir}/man1/pvattest-create.1*
|
|
|
|
|
%{_mandir}/man1/pvattest-perform.1*
|
|
|
|
|
%{_mandir}/man1/pvattest-verify.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-add.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-create-association.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-create-meta.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-create.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-list.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-lock.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-verify.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret.1*
|
|
|
|
|
%dir %{_datadir}/s390-tools
|
|
|
|
|
%{_datadir}/s390-tools/genprotimg/
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# enf of multi-arch section
|
|
|
|
|
#
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%ifarch s390x
|
|
|
|
|
#
|
|
|
|
|
# s390x specific sub-packages
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
# ************************* s390-tools core package *************************
|
|
|
|
|
#
|
|
|
|
|
%package core
|
|
|
|
|
License: MIT
|
|
|
|
|
Summary: S390 core tools
|
|
|
|
|
Provides: s390-tools-core = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: coreutils
|
|
|
|
|
%{?systemd_requires}
|
|
|
|
|
# BRs are covered via the base package
|
|
|
|
@ -192,7 +306,7 @@ This package provides minimal set of tools needed to system to boot.
|
|
|
|
|
|
|
|
|
|
%files core
|
|
|
|
|
%doc README.md zdev/src/chzdev_usage.txt
|
|
|
|
|
%doc LICENSE
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_sbindir}/chreipl
|
|
|
|
|
%{_sbindir}/chzdev
|
|
|
|
|
%{_sbindir}/cio_ignore
|
|
|
|
@ -208,13 +322,17 @@ This package provides minimal set of tools needed to system to boot.
|
|
|
|
|
/lib/s390-tools/cpictl
|
|
|
|
|
/lib/s390-tools/stage3.bin
|
|
|
|
|
/lib/s390-tools/zdev_id
|
|
|
|
|
/lib/s390-tools/zdev-from-dasd_mod.dasd
|
|
|
|
|
/lib/s390-tools/zdev-root-update
|
|
|
|
|
/lib/s390-tools/zdev-to-dasd_mod.dasd
|
|
|
|
|
/lib/s390-tools/zdev-to-rd.znet
|
|
|
|
|
/lib/s390-tools/zipl.conf
|
|
|
|
|
%ghost %config(noreplace) %{_sysconfdir}/zipl.conf
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/ziplenv
|
|
|
|
|
%{_unitdir}/cpi.service
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/cpi
|
|
|
|
|
/usr/lib/dracut/modules.d/95zdev/
|
|
|
|
|
/usr/lib/dracut/modules.d/95zdev-kdump/
|
|
|
|
|
%{_mandir}/man5/zipl.conf.5*
|
|
|
|
|
%{_mandir}/man8/chreipl.8*
|
|
|
|
|
%{_mandir}/man8/chzdev.8*
|
|
|
|
@ -259,14 +377,18 @@ This package provides minimal set of tools needed to system to boot.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
%package base
|
|
|
|
|
License: MIT
|
|
|
|
|
License: MIT AND LGPL-2.1-or-later
|
|
|
|
|
Summary: S390 base tools
|
|
|
|
|
Requires: gawk sed coreutils
|
|
|
|
|
Requires: sg3_utils
|
|
|
|
|
Provides: s390-tools-base = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: coreutils
|
|
|
|
|
Requires: ethtool
|
|
|
|
|
Requires: tar
|
|
|
|
|
Requires: file
|
|
|
|
|
Requires: gawk
|
|
|
|
|
Requires: sed
|
|
|
|
|
Requires: sg3_utils
|
|
|
|
|
Requires: tar
|
|
|
|
|
Requires: s390utils-core = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: s390utils-se-data = %{epoch}:%{version}-%{release}
|
|
|
|
|
%{?systemd_requires}
|
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
@ -274,7 +396,6 @@ BuildRequires: glibc-static
|
|
|
|
|
BuildRequires: cryptsetup-devel >= 2.0.3
|
|
|
|
|
BuildRequires: json-c-devel
|
|
|
|
|
BuildRequires: rpm-devel
|
|
|
|
|
BuildRequires: glib2-devel
|
|
|
|
|
BuildRequires: libxml2-devel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -340,11 +461,6 @@ s390 base tools. This collection provides the following utilities:
|
|
|
|
|
* tunedasd:
|
|
|
|
|
Adjust tunable parameters on DASD devices.
|
|
|
|
|
|
|
|
|
|
* vmconvert:
|
|
|
|
|
Convert system dumps created by the z/VM VMDUMP command into dumps with
|
|
|
|
|
LKCD format. These LKCD dumps can then be analyzed with the dump analysis
|
|
|
|
|
tool lcrash.
|
|
|
|
|
|
|
|
|
|
* vmcp:
|
|
|
|
|
Allows Linux users to send commands to the z/VM control program (CP).
|
|
|
|
|
The normal usage is to invoke vmcp with the command you want to
|
|
|
|
@ -427,9 +543,14 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
|
|
|
|
|
%files base
|
|
|
|
|
%doc README.md zdev/src/lszdev_usage.txt
|
|
|
|
|
%license rust/LICENSE.dependencies
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%license rust/cargo-vendor.txt
|
|
|
|
|
%endif
|
|
|
|
|
%{_sbindir}/chccwdev
|
|
|
|
|
%{_sbindir}/chchp
|
|
|
|
|
%{_sbindir}/chcpumf
|
|
|
|
|
%{_sbindir}/chpstat
|
|
|
|
|
%{_sbindir}/chshut
|
|
|
|
|
%{_sbindir}/chzcrypt
|
|
|
|
|
%{_sbindir}/dasdstat
|
|
|
|
@ -444,8 +565,9 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
%{_sbindir}/lscss
|
|
|
|
|
%{_sbindir}/lsdasd
|
|
|
|
|
%{_sbindir}/lshwc
|
|
|
|
|
%{_sbindir}/lsqeth
|
|
|
|
|
%{_sbindir}/lsluns
|
|
|
|
|
%{_sbindir}/lsqeth
|
|
|
|
|
%{_sbindir}/lspai
|
|
|
|
|
%{_sbindir}/lsreipl
|
|
|
|
|
%{_sbindir}/lsscm
|
|
|
|
|
%{_sbindir}/lsshut
|
|
|
|
@ -475,10 +597,11 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
%{_sbindir}/zpcictl
|
|
|
|
|
%{_bindir}/dump2tar
|
|
|
|
|
%{_bindir}/genprotimg
|
|
|
|
|
%{_bindir}/pvapconfig
|
|
|
|
|
%{_bindir}/mk-s390image
|
|
|
|
|
%{_bindir}/pvattest
|
|
|
|
|
%{_bindir}/pvextract-hdr
|
|
|
|
|
%{_bindir}/vmconvert
|
|
|
|
|
%{_bindir}/pvsecret
|
|
|
|
|
%{_bindir}/zkey
|
|
|
|
|
%{_bindir}/zkey-cryptsetup
|
|
|
|
|
%{_unitdir}/dumpconf.service
|
|
|
|
@ -503,11 +626,19 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
%{_libdir}/zkey/zkey-kmip.so
|
|
|
|
|
%{_mandir}/man1/dump2tar.1*
|
|
|
|
|
%{_mandir}/man1/genprotimg.1*
|
|
|
|
|
%{_mandir}/man1/pvapconfig.1*
|
|
|
|
|
%{_mandir}/man1/pvattest.1*
|
|
|
|
|
%{_mandir}/man1/pvattest-create.1*
|
|
|
|
|
%{_mandir}/man1/pvattest-perform.1*
|
|
|
|
|
%{_mandir}/man1/pvattest-verify.1*
|
|
|
|
|
%{_mandir}/man1/vmconvert.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-add.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-create-association.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-create-meta.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-create.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-list.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-lock.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret-verify.1*
|
|
|
|
|
%{_mandir}/man1/pvsecret.1*
|
|
|
|
|
%{_mandir}/man1/zkey.1*
|
|
|
|
|
%{_mandir}/man1/zkey-cryptsetup.1*
|
|
|
|
|
%{_mandir}/man1/zkey-ekmfweb.1*
|
|
|
|
@ -517,6 +648,7 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
%{_mandir}/man8/chccwdev.8*
|
|
|
|
|
%{_mandir}/man8/chchp.8*
|
|
|
|
|
%{_mandir}/man8/chcpumf.8*
|
|
|
|
|
%{_mandir}/man8/chpstat.8*
|
|
|
|
|
%{_mandir}/man8/chshut.8*
|
|
|
|
|
%{_mandir}/man8/chzcrypt.8*
|
|
|
|
|
%{_mandir}/man8/dasdstat.8*
|
|
|
|
@ -532,6 +664,7 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
%{_mandir}/man8/lsdasd.8*
|
|
|
|
|
%{_mandir}/man8/lshwc.8*
|
|
|
|
|
%{_mandir}/man8/lsluns.8*
|
|
|
|
|
%{_mandir}/man8/lspai.8*
|
|
|
|
|
%{_mandir}/man8/lsqeth.8*
|
|
|
|
|
%{_mandir}/man8/lsreipl.8*
|
|
|
|
|
%{_mandir}/man8/lsscm.8*
|
|
|
|
@ -557,7 +690,6 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
%{_mandir}/man8/znetconf.8*
|
|
|
|
|
%{_mandir}/man8/zpcictl.8*
|
|
|
|
|
%dir %{_datadir}/s390-tools
|
|
|
|
|
%{_datadir}/s390-tools/genprotimg/
|
|
|
|
|
%{_datadir}/s390-tools/netboot/
|
|
|
|
|
%dir %attr(0770,root,zkeyadm) %{_sysconfdir}/zkey
|
|
|
|
|
%dir %attr(0770,root,zkeyadm) %{_sysconfdir}/zkey/kmip
|
|
|
|
@ -569,11 +701,25 @@ getent group zkeyadm > /dev/null || groupadd -r zkeyadm
|
|
|
|
|
# Additional Fedora/RHEL specific stuff
|
|
|
|
|
/boot/tape0
|
|
|
|
|
|
|
|
|
|
%package se-data
|
|
|
|
|
License: MIT
|
|
|
|
|
Summary: Data for Secure Execution
|
|
|
|
|
Provides: s390-tools-se-data = %{epoch}:%{version}-%{release}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description se-data
|
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
|
%files se-data
|
|
|
|
|
%dir %{_datadir}/s390-tools
|
|
|
|
|
%{_datadir}/s390-tools/genprotimg/
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# *********************** s390-tools osasnmpd package ***********************
|
|
|
|
|
#
|
|
|
|
|
%package osasnmpd
|
|
|
|
|
Summary: SNMP sub-agent for OSA-Express cards
|
|
|
|
|
Provides: s390-tools-osasnmpd = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: net-snmp
|
|
|
|
|
Requires: psmisc
|
|
|
|
|
BuildRequires: net-snmp-devel
|
|
|
|
@ -593,6 +739,7 @@ ATM Ethernet LAN Emulation in QDIO mode.
|
|
|
|
|
#
|
|
|
|
|
%package mon_statd
|
|
|
|
|
Summary: Monitoring daemons for Linux in z/VM
|
|
|
|
|
Provides: s390-tools-mon_statd = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: coreutils
|
|
|
|
|
%{?systemd_requires}
|
|
|
|
|
|
|
|
|
@ -632,6 +779,7 @@ Monitoring daemons for Linux in z/VM:
|
|
|
|
|
#
|
|
|
|
|
%package cpuplugd
|
|
|
|
|
Summary: Daemon that manages CPU and memory resources
|
|
|
|
|
Provides: s390-tools-cpuplugd = %{epoch}:%{version}-%{release}
|
|
|
|
|
%{?systemd_requires}
|
|
|
|
|
BuildRequires: systemd
|
|
|
|
|
|
|
|
|
@ -661,6 +809,7 @@ memory can be increased or decreased exploiting the CMM1 feature.
|
|
|
|
|
#
|
|
|
|
|
%package ziomon
|
|
|
|
|
Summary: S390 ziomon tools
|
|
|
|
|
Provides: s390-tools-ziomon = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: blktrace
|
|
|
|
|
Requires: coreutils
|
|
|
|
|
Requires: device-mapper-multipath
|
|
|
|
@ -699,6 +848,7 @@ Tool set to collect data for zfcp performance analysis and report.
|
|
|
|
|
#
|
|
|
|
|
%package iucvterm
|
|
|
|
|
Summary: z/VM IUCV terminal applications
|
|
|
|
|
Provides: s390-tools-iucvterm = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires(pre): shadow-utils
|
|
|
|
|
Requires(post): grep
|
|
|
|
|
Requires(postun): grep
|
|
|
|
@ -763,6 +913,7 @@ fi
|
|
|
|
|
Summary: CMS file system based on FUSE
|
|
|
|
|
BuildRequires: fuse3-devel
|
|
|
|
|
Requires: fuse3
|
|
|
|
|
Provides: s390-tools-cmsfs-fuse = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: glibc-gconv-extra
|
|
|
|
|
Obsoletes: %{name}-cmsfs < 2:2.7.0-3
|
|
|
|
|
|
|
|
|
@ -783,6 +934,7 @@ Summary: z/OS data set access based on FUSE
|
|
|
|
|
BuildRequires: fuse3-devel
|
|
|
|
|
BuildRequires: libcurl-devel
|
|
|
|
|
Requires: fuse3
|
|
|
|
|
Provides: s390-tools-zdsfs = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description zdsfs
|
|
|
|
|
This package contains the z/OS data set access based on FUSE.
|
|
|
|
@ -798,6 +950,7 @@ This package contains the z/OS data set access based on FUSE.
|
|
|
|
|
Summary: HMC drive file system based on FUSE
|
|
|
|
|
BuildRequires: fuse3-devel
|
|
|
|
|
Requires: fuse3
|
|
|
|
|
Provides: s390-tools-hmcdrvfs = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description hmcdrvfs
|
|
|
|
|
This package contains a HMC drive file system based on FUSE and a tool
|
|
|
|
@ -814,6 +967,7 @@ to list files and directories.
|
|
|
|
|
#
|
|
|
|
|
%package cpacfstatsd
|
|
|
|
|
Summary: Monitor and maintain CPACF activity counters
|
|
|
|
|
Provides: s390-tools-cpacfstatsd = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires(post): systemd
|
|
|
|
|
Requires(preun): systemd
|
|
|
|
|
Requires(postun): systemd
|
|
|
|
@ -852,12 +1006,13 @@ Summary: Use multipath information for re-IPL path failover
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
BuildRequires: bash
|
|
|
|
|
BuildRequires: coreutils
|
|
|
|
|
%if 0%{?with_pandoc}
|
|
|
|
|
%if %{with pandoc}
|
|
|
|
|
BuildRequires: pandoc
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: gawk
|
|
|
|
|
BuildRequires: gzip
|
|
|
|
|
BuildRequires: sed
|
|
|
|
|
Provides: s390-tools-chreipl-fcp-mpath = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: bash
|
|
|
|
|
Requires: coreutils
|
|
|
|
|
Requires: util-linux
|
|
|
|
@ -873,7 +1028,7 @@ reconfigures the FCP re-IPL settings to use an operational path.
|
|
|
|
|
|
|
|
|
|
%files chreipl-fcp-mpath
|
|
|
|
|
%doc chreipl-fcp-mpath/README.md
|
|
|
|
|
%if 0%{?with_pandoc}
|
|
|
|
|
%if %{with pandoc}
|
|
|
|
|
%doc chreipl-fcp-mpath/README.html
|
|
|
|
|
%endif
|
|
|
|
|
%dir %{_prefix}/lib/chreipl-fcp-mpath/
|
|
|
|
@ -892,7 +1047,7 @@ reconfigures the FCP re-IPL settings to use an operational path.
|
|
|
|
|
#
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Development files
|
|
|
|
|
|
|
|
|
|
Provides: s390-tools-devel = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: %{name}-base%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
@ -905,109 +1060,126 @@ User-space development files for the s390/s390x architecture.
|
|
|
|
|
%{_libdir}/libekmfweb.so
|
|
|
|
|
%{_libdir}/libkmipclient.so
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# end of s390x specific sub-packages
|
|
|
|
|
#
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Feb 02 2023 Dan Horák <dhorak@redhat.com> - 2:2.25.0-4
|
|
|
|
|
- zkey: Support EP11 host library version 4 (#2165812)
|
|
|
|
|
- Resolves: #2165812
|
|
|
|
|
|
|
|
|
|
* Wed Jan 25 2023 Dan Horák <dhorak@redhat.com> - 2:2.25.0-3
|
|
|
|
|
- revert the last change
|
|
|
|
|
- Related: #2161740
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Dan Horák <dhorak@redhat.com> - 2:2.25.0-2
|
|
|
|
|
- update kernel install script to write /etc/kernel/cmdline (#2161740)
|
|
|
|
|
- Resolves: #2161740
|
|
|
|
|
|
|
|
|
|
* Tue Dec 13 2022 Dan Horák <dhorak@redhat.com> - 2:2.25.0-1
|
|
|
|
|
- rebased to 2.25.0 (#2110310)
|
|
|
|
|
- zipl: Support for Secure Boot IPL and Dump from ECKD DASD (#2044200)
|
|
|
|
|
- zipl: Add secure boot trailer (#2142883)
|
|
|
|
|
- Resolves: #2110310 #2044200 #2142883
|
|
|
|
|
|
|
|
|
|
* Thu Nov 24 2022 Dan Horák <dhorak@redhat.com> - 2:2.24.0-1
|
|
|
|
|
- rebased to 2.24.0 (#2110310)
|
|
|
|
|
- KVM: Tool to process encrypted Secure Execution guest dumps (#2044198)
|
|
|
|
|
- zdev: Site-aware device configuration (#2044202)
|
|
|
|
|
- Support IBM z16 Processor-Activity-Instrumentation Facility (#2110298)
|
|
|
|
|
- Transparent DASD PPRC (Peer-to-Peer Remote Copy) handling (#2126617)
|
|
|
|
|
- Support IBM z16 Processor Activity Instrumentation Extension 1 (#2127435)
|
|
|
|
|
- Display Processor Activity Instrumentation CPACF counters (#2111012)
|
|
|
|
|
- Resolves: #2110310 #2044198 #2044202 #2110298 #2126617 #2127435 #2111012
|
|
|
|
|
|
|
|
|
|
* Thu Aug 04 2022 Dan Horák <dhorak@redhat.com> - 2:2.22.0-2
|
|
|
|
|
- zipl: Add missing check for a nullpointer (#2113884)
|
|
|
|
|
- Resolves: #2113884
|
|
|
|
|
|
|
|
|
|
* Mon Jul 11 2022 Dan Horák <dhorak@redhat.com> - 2:2.22.0-1
|
|
|
|
|
- rebased to 2.22.0 (#2044205)
|
|
|
|
|
- add tool to persistently configure vfio-ap devices (#1870699)
|
|
|
|
|
- NVMe stand-alone dump support (#1878081)
|
|
|
|
|
- zipl: Site-aware environment block (#2044199)
|
|
|
|
|
- KVM: Secure Execution Attestation Userspace Tool (#2044203)
|
|
|
|
|
- Add new CPU-MF Counters for IBM z16 Hardware (#2047722)
|
|
|
|
|
- Resolves: #2044205 #1870699 #1878081 #2044199 #2044203 #2047722
|
|
|
|
|
|
|
|
|
|
* Tue Apr 26 2022 Dan Horák <dhorak@redhat.com> - 2:2.21.0-1
|
|
|
|
|
- rebased to 2.21.0 (#2044205)
|
|
|
|
|
- cpictl: Suppress messages for unwritable sysfs files (#1985745)
|
|
|
|
|
- KVM: Secure Execution guest dump encryption with customer keys (#2044204)
|
|
|
|
|
- KVM: Allow long kernel command lines for Secure Execution guests (#2044197)
|
|
|
|
|
- zcrypt DD: Exploitation Support of new IBM Z Crypto Hardware (#2044206)
|
|
|
|
|
- Long Kernel Commmand Line for s390x (#2060826)
|
|
|
|
|
- zcryptctl support for control domains (#2076920)
|
|
|
|
|
- Add additional information to SCLP CPI (#2046680)
|
|
|
|
|
- Resolves: #2044205 #1985745 #2044204 #2044197 #2044206 #2060826 #2076920 #2046680
|
|
|
|
|
|
|
|
|
|
* Tue Dec 14 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-2
|
|
|
|
|
- update ccw udev rules for synthetic events (#2027357)
|
|
|
|
|
- Resolves: #2027357
|
|
|
|
|
|
|
|
|
|
* Tue Nov 23 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-1.1
|
|
|
|
|
- rebuild
|
|
|
|
|
- Related: #2022347
|
|
|
|
|
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 2:2.33.1-1
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Thu Nov 18 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-1
|
|
|
|
|
- rebased to 2.19.0 (#2022347)
|
|
|
|
|
- cmsfs-fuse Requires glibc-gconv-extra (#2022702)
|
|
|
|
|
- cpictl: fix permissions (#2024102)
|
|
|
|
|
- Resolves: #2022347 #2022702 #2024102
|
|
|
|
|
* Tue Jul 16 2024 Dan Horák <dhorak@redhat.com> - 2:2.33.1-1
|
|
|
|
|
- rebased to 2.33.1 (RHEL-23874)
|
|
|
|
|
- Resolves: RHEL-23874
|
|
|
|
|
|
|
|
|
|
* Fri Nov 05 2021 Dan Horák <dan[at]danny.cz> - 2:2.18.0-1
|
|
|
|
|
- move vmcp to core (#1931287)
|
|
|
|
|
- rebased to 2.18.0 (#2011434)
|
|
|
|
|
- Resolves: #2011434 #1931287
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2:2.31.0-2
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.17.0-4
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
* Mon Feb 05 2024 Dan Horák <dan[at]danny.cz> - 2:2.31.0-1
|
|
|
|
|
- rebased to 2.31.0 (rhbz#2262499)
|
|
|
|
|
|
|
|
|
|
* Fri Aug 06 2021 Dan Horák <dan[at]danny.cz> - 2:2.17.0-3
|
|
|
|
|
- libkmipclient: Fix parsing of hex values for XML and JSON encoding (#1870700)
|
|
|
|
|
- Resolves: #1870700
|
|
|
|
|
* Thu Jan 25 2024 Dan Horák <dan[at]danny.cz> - 2:2.30.0-2
|
|
|
|
|
- add s390utils-se-data as a noarch subpackage with Secure Execution data files
|
|
|
|
|
|
|
|
|
|
* Thu Jul 22 2021 Dan Horák <dan[at]danny.cz> - 2:2.17.0-2
|
|
|
|
|
- fix build
|
|
|
|
|
- Related: #1869554
|
|
|
|
|
* Tue Jan 02 2024 Dan Horák <dan[at]danny.cz> - 2:2.30.0-1
|
|
|
|
|
- rebased to 2.30.0 (rhbz#2252519)
|
|
|
|
|
|
|
|
|
|
* Thu Jul 15 2021 Dan Horák <dan[at]danny.cz> - 2:2.17.0-1
|
|
|
|
|
- rebased to 2.17.0 (#1869554)
|
|
|
|
|
- Resolves: #1869554
|
|
|
|
|
* Fri Dec 01 2023 Fabio Valentini <decathorpe@gmail.com> - 2:2.29.0-6
|
|
|
|
|
- Rebuild for openssl crate >= v0.10.60 (RUSTSEC-2023-0044, RUSTSEC-2023-0072)
|
|
|
|
|
|
|
|
|
|
* Wed Jul 07 2021 Dan Horák <dan[at]danny.cz> - 2:2.16.0-6
|
|
|
|
|
- update genprotimg for OpenSSL3 (#1964818)
|
|
|
|
|
- Related: #1964818
|
|
|
|
|
* Fri Nov 10 2023 Dan Horák <dan[at]danny.cz> - 2:2.29.0-5
|
|
|
|
|
- enable multi-arch build
|
|
|
|
|
|
|
|
|
|
* Thu Jun 17 2021 Dan Horák <dan[at]danny.cz> - 2:2.16.0-5
|
|
|
|
|
- drop obsolete setting from device_cio_free.service (#1972449)
|
|
|
|
|
- Resolves: #1972449
|
|
|
|
|
* Fri Nov 10 2023 Dan Horák <dan[at]danny.cz> - 2:2.29.0-4
|
|
|
|
|
- fix upstream kernel installations
|
|
|
|
|
|
|
|
|
|
* Mon Oct 23 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 2:2.29.0-3
|
|
|
|
|
- Use vendored dependencies in RHEL builds
|
|
|
|
|
|
|
|
|
|
* Thu Aug 31 2023 Jakub Čajka <jcajka[at]redhat.com> - 2:2.29.0-2
|
|
|
|
|
- enable rust based tools
|
|
|
|
|
|
|
|
|
|
* Wed Jun 02 2021 Dan Horák <dan[at]danny.cz> - 2:2.16.0-4
|
|
|
|
|
- omit genprotimg to allow build against OpenSSL 3.0 (#1964818)
|
|
|
|
|
- Resolves: #1964818
|
|
|
|
|
* Mon Aug 07 2023 Dan Horák <dan[at]danny.cz> - 2:2.29.0-1
|
|
|
|
|
- rebased to 2.29.0
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.16.0-3
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.28.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 11 2023 Dan Horák <dan[at]danny.cz> - 2:2.28.0-1
|
|
|
|
|
- rebased to 2.28.0
|
|
|
|
|
|
|
|
|
|
* Wed May 31 2023 Dan Horák <dan[at]danny.cz> - 2:2.27.0-1
|
|
|
|
|
- rebased to 2.27.0
|
|
|
|
|
|
|
|
|
|
* Fri May 19 2023 Petr Pisar <ppisar@redhat.com> - 2:2.26.0-2
|
|
|
|
|
- Rebuild against rpm-4.19 (https://fedoraproject.org/wiki/Changes/RPM-4.19)
|
|
|
|
|
|
|
|
|
|
* Fri Mar 03 2023 Dan Horák <dan[at]danny.cz> - 2:2.26.0-1
|
|
|
|
|
- rebased to 2.26.0
|
|
|
|
|
|
|
|
|
|
* Tue Jan 31 2023 Dan Horák <dan[at]danny.cz> - 2:2.25.0-4
|
|
|
|
|
- add post GA fixes
|
|
|
|
|
|
|
|
|
|
* Mon Jan 23 2023 Dan Horák <dan[at]danny.cz> - 2:2.25.0-3
|
|
|
|
|
- revert the kernel install script change
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Dan Horák <dan[at]danny.cz> - 2:2.25.0-2
|
|
|
|
|
- update kernel install script to write /etc/kernel/cmdline
|
|
|
|
|
|
|
|
|
|
* Fri Dec 09 2022 Dan Horák <dan[at]danny.cz> - 2:2.25.0-1
|
|
|
|
|
- rebased to 2.25.0
|
|
|
|
|
|
|
|
|
|
* Tue Nov 22 2022 Dan Horák <dan[at]danny.cz> - 2:2.24.0-2
|
|
|
|
|
- update for Transparent DASD PPRC (Peer-to-Peer Remote Copy) handling
|
|
|
|
|
|
|
|
|
|
* Thu Nov 10 2022 Dan Horák <dan[at]danny.cz> - 2:2.24.0-1
|
|
|
|
|
- rebased to 2.24.0
|
|
|
|
|
|
|
|
|
|
* Fri Aug 19 2022 Dan Horák <dan[at]danny.cz> - 2:2.23.0-1
|
|
|
|
|
- rebased to 2.23.0
|
|
|
|
|
|
|
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.22.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 20 2022 Dan Horák <dan[at]danny.cz> - 2:2.22.0-1
|
|
|
|
|
- rebased to 2.22.0
|
|
|
|
|
|
|
|
|
|
* Tue May 31 2022 Dan Horák <dan[at]danny.cz> - 2:2.21.0-2
|
|
|
|
|
- do not fail on emtpy /proc/cmdline when installing kernel (#1899759)
|
|
|
|
|
|
|
|
|
|
* Fri Apr 22 2022 Dan Horák <dan[at]danny.cz> - 2:2.21.0-1
|
|
|
|
|
- rebased to 2.21.0
|
|
|
|
|
|
|
|
|
|
* Mon Feb 07 2022 Dan Horák <dan[at]danny.cz> - 2:2.20.0-1
|
|
|
|
|
- rebased to 2.20.0
|
|
|
|
|
- switch to fuse3
|
|
|
|
|
|
|
|
|
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.19.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Nov 26 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-2
|
|
|
|
|
- update ccw udev rules
|
|
|
|
|
|
|
|
|
|
* Fri Nov 12 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-1
|
|
|
|
|
- rebased to 2.19.0
|
|
|
|
|
- cmsfs-fuse Requires glibc-gconv-extra (#2022652)
|
|
|
|
|
|
|
|
|
|
* Wed Oct 20 2021 Dan Horák <dan[at]danny.cz> - 2:2.18.0-2
|
|
|
|
|
- move vmcp to core (#1931287)
|
|
|
|
|
|
|
|
|
|
* Tue Oct 05 2021 Dan Horák <dan[at]danny.cz> - 2:2.18.0-1
|
|
|
|
|
- rebased to 2.18.0
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.17.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 07 2021 Dan Horák <dan[at]danny.cz> - 2:2.17.0-1
|
|
|
|
|
- rebased to 2.17.0
|
|
|
|
|
- zfcpconf: set exit code explicitly (#1977434)
|
|
|
|
|
- mk-s390image script requires file (#1973239)
|
|
|
|
|
- drop obsolete setting from device_cio_free.service (#1972449)
|
|
|
|
|
|
|
|
|
|
* Mon Mar 01 2021 Dan Horák <dan[at]danny.cz> - 2:2.16.0-2
|
|
|
|
|
- drop superfluous Require from s390utils-base
|
|
|
|
|