0379a19
# secure boot support is for RHEL only
0379a19
%if 0%{?rhel} >= 8
0379a19
%global signzipl 1
0379a19
%endif
0379a19
6dc91fa
%if 0%{?fedora}
6dc91fa
%global with_pandoc 1
6dc91fa
%endif
6dc91fa
0b15456
Name:           s390utils
fca7af8
Summary:        Utilities and daemons for IBM z Systems
c33643b
Version:        2.25.0
9e98b44
Release:        4%{?dist}
0b15456
Epoch:          2
eafdf58
License:        MIT
0b15456
ExclusiveArch:  s390 s390x
ce7722e
URL:            https://github.com/ibm-s390-linux/s390-tools
ce7722e
Source0:        https://github.com/ibm-s390-linux/s390-tools/archive/v%{version}.tar.gz#/s390-tools-%{version}.tar.gz
9e8e130
Source5:        https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/zfcpconf.sh
9e8e130
Source7:        https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/zfcp.udev
9e8e130
Source12:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/dasd.udev
9e8e130
Source13:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/dasdconf.sh
9e8e130
Source14:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/device_cio_free
9e8e130
Source15:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/device_cio_free.service
9e8e130
Source16:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/ccw_init
9e8e130
Source17:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/ccw.udev
9e8e130
Source21:       https://fedorapeople.org/cgit/sharkcz/public_git/utils.git/tree/normalize_dasd_arg
cb14520
Source23:       20-zipl-kernel.install
cb14520
Source24:       52-zipl-rescue.install
cb14520
Source25:       91-zipl.install
0b15456
0379a19
%if 0%{?signzipl}
0379a19
%define pesign_name redhatsecureboot302
0379a19
%endif
0379a19
dbc645a
# change the defaults to match Fedora environment
dbc645a
Patch0:         s390-tools-zipl-invert-script-options.patch
b45c50c
Patch1:         s390-tools-zipl-blscfg-rpm-nvr-sort.patch
464c5cf
bef2b35
# upstream fixes/updates
9e98b44
Patch100:       s390utils-%%{version}-fedora.patch
bef2b35
365ca29
Requires:       s390utils-core = %{epoch}:%{version}-%{release}
0b15456
Requires:       s390utils-base = %{epoch}:%{version}-%{release}
0b15456
Requires:       s390utils-osasnmpd = %{epoch}:%{version}-%{release}
0b15456
Requires:       s390utils-cpuplugd = %{epoch}:%{version}-%{release}
0b15456
Requires:       s390utils-mon_statd = %{epoch}:%{version}-%{release}
0b15456
Requires:       s390utils-iucvterm = %{epoch}:%{version}-%{release}
0b15456
Requires:       s390utils-ziomon = %{epoch}:%{version}-%{release}
0b15456
ce7722e
BuildRequires:  make
4238dfb
BuildRequires:  gcc-c++
0b15456
0b15456
%description
0b15456
This is a meta package for installing the default s390-tools sub packages.
0b15456
If you do not need all default sub packages, it is recommended to install the
0b15456
required sub packages separately.
0b15456
0b15456
The s390utils packages contain a set of user space utilities that should to
0b15456
be used together with the zSeries (s390) Linux kernel and device drivers.
0b15456
0b15456
%prep
4295214
%setup -q -n s390-tools-%{version}
0b15456
0425b96
# Fedora/RHEL changes
dbc645a
%patch0 -p1 -b .zipl-invert-script-options
b45c50c
%patch1 -p1 -b .blscfg-rpm-nvr-sort
0b15456
bef2b35
# upstream fixes/updates
9e98b44
%patch100 -p1
bef2b35
6dc91fa
# drop -Werror from genprotimg to allow building with GCC 12
6dc91fa
sed -i.bak -e 's/-Werror//g' genprotimg/src/Makefile genprotimg/boot/Makefile
6dc91fa
0b15456
# remove --strip from install
0b15456
find . -name Makefile | xargs sed -i 's/$(INSTALL) -s/$(INSTALL)/g'
0b15456
0b15456
0b15456
%build
0719e3d
make \
b385215
        CFLAGS="%{build_cflags}" CXXFLAGS="%{build_cxxflags}" LDFLAGS="%{build_ldflags}" \
b385215
        HAVE_DRACUT=1 \
6dc91fa
%if 0%{?with_pandoc}
b385215
        ENABLE_DOC=1 \
6dc91fa
%endif
c1e8b3a
        NO_PIE_LDFLAGS="" \
0719e3d
        BINDIR=/usr/sbin \
0719e3d
        DISTRELEASE=%{release} \
0719e3d
        V=1
0b15456
0b15456
0b15456
%install
0b15456
make install \
e9f0a67
        HAVE_DRACUT=1 \
6dc91fa
%if 0%{?with_pandoc}
b385215
        ENABLE_DOC=1 \
6dc91fa
%endif
848b61e
        DESTDIR=%{buildroot} \
0719e3d
        BINDIR=/usr/sbin \
a27744e
        SYSTEMDSYSTEMUNITDIR=%{_unitdir} \
0b15456
        DISTRELEASE=%{release} \
0b15456
        V=1
0b15456
0379a19
# sign the stage3 bootloader
0379a19
%if 0%{?signzipl}
0379a19
if [ -x /usr/bin/rpm-sign ]; then
0379a19
    pushd %{buildroot}/lib/s390-tools/
0379a19
        rpm-sign --key "%{pesign_name}" --lkmsign stage3.bin --output stage3.signed
0379a19
        mv stage3.signed stage3.bin
0379a19
    popd
0379a19
else
0379a19
    echo "rpm-sign not available, stage3 won't be signed"
0379a19
fi
0379a19
%endif
0379a19
4a5ecf8
# move tools to searchable dir
4a5ecf8
mv %{buildroot}%{_datadir}/s390-tools/netboot/mk-s390image %{buildroot}%{_bindir}
4a5ecf8
848b61e
mkdir -p %{buildroot}{/boot,%{_udevrulesdir},%{_sysconfdir}/{profile.d,sysconfig},%{_prefix}/lib/modules-load.d}
848b61e
install -p -m 644 zipl/boot/tape0.bin %{buildroot}/boot/tape0
848b61e
install -p -m 755 %{SOURCE5} %{buildroot}%{_sbindir}
848b61e
install -p -m 755 %{SOURCE13} %{buildroot}%{_sbindir}
848b61e
install -p -m 755 %{SOURCE21} %{buildroot}%{_sbindir}
848b61e
install -p -m 644 %{SOURCE7} %{buildroot}%{_udevrulesdir}/56-zfcp.rules
848b61e
install -p -m 644 %{SOURCE12} %{buildroot}%{_udevrulesdir}/56-dasd.rules
0b15456
848b61e
touch %{buildroot}%{_sysconfdir}/{zfcp.conf,dasd.conf}
0b15456
8473d59
# upstream udev rules
848b61e
install -Dp -m 644 etc/udev/rules.d/*.rules %{buildroot}%{_udevrulesdir}
0b15456
b45c50c
# upstream modules config
848b61e
install -Dp -m 644 etc/modules-load.d/*.conf %{buildroot}%{_prefix}/lib/modules-load.d
b45c50c
6aab78b
# Install kernel-install scripts
6aab78b
install -d -m 0755 %{buildroot}%{_prefix}/lib/kernel/install.d/
cb14520
install -D -m 0755 -t %{buildroot}%{_prefix}/lib/kernel/install.d/ zfcpdump/10-zfcpdump.install
6aab78b
install -D -m 0755 -t %{buildroot}%{_prefix}/lib/kernel/install.d/ %{SOURCE23}
6aab78b
install -D -m 0755 -t %{buildroot}%{_prefix}/lib/kernel/install.d/ %{SOURCE24}
cb14520
install -D -m 0755 -t %{buildroot}%{_prefix}/lib/kernel/install.d/ %{SOURCE25}
6aab78b
install -d -m 0755 %{buildroot}%{_sysconfdir}/kernel/install.d/
6aab78b
install -m 0644 /dev/null %{buildroot}%{_sysconfdir}/kernel/install.d/20-grubby.install
6aab78b
0b15456
# install usefull headers for devel subpackage
848b61e
mkdir -p %{buildroot}%{_includedir}/%{name}
848b61e
install -p -m 644 include/lib/vtoc.h %{buildroot}%{_includedir}/%{name}
0b15456
0b15456
# device_cio_free
848b61e
install -p -m 755 %{SOURCE14} %{buildroot}%{_sbindir}
848b61e
pushd %{buildroot}%{_sbindir}
0b15456
for lnk in dasd zfcp znet; do
0b15456
    ln -sf device_cio_free ${lnk}_cio_free
0b15456
done
0b15456
popd
848b61e
install -p -m 644 %{SOURCE15} %{buildroot}%{_unitdir}
0b15456
0b15456
# ccw
848b61e
install -p -m 755 %{SOURCE16} %{buildroot}/usr/lib/udev/ccw_init
848b61e
install -p -m 644 %{SOURCE17} %{buildroot}%{_udevrulesdir}/81-ccw.rules
0b15456
0a5f094
# zipl.conf to be ghosted
848b61e
touch %{buildroot}%{_sysconfdir}/zipl.conf
0a5f094
0b15456
0b15456
%files
eafdf58
%doc README.md
0b15456
0b15456
#
365ca29
# ************************* s390-tools core package  *************************
0b15456
#
365ca29
%package core
365ca29
License:        MIT
383f5e2
Summary:        S390 core tools
365ca29
Requires:       coreutils
365ca29
%{?systemd_requires}
365ca29
# BRs are covered via the base package
365ca29
365ca29
365ca29
%description core
365ca29
This package provides minimal set of tools needed to system to boot.
365ca29
365ca29
%post core
365ca29
%systemd_post device_cio_free.service
365ca29
%systemd_post cpi.service
365ca29
365ca29
%preun core
365ca29
%systemd_preun device_cio_free.service
365ca29
%systemd_preun cpi.service
365ca29
365ca29
%postun core
365ca29
%systemd_postun_with_restart cpi.service
365ca29
365ca29
%files core
1cc3998
%doc README.md zdev/src/chzdev_usage.txt
365ca29
%doc LICENSE
365ca29
%{_sbindir}/chreipl
365ca29
%{_sbindir}/chzdev
2ff6f78
%{_sbindir}/cio_ignore
365ca29
%{_sbindir}/dasdfmt
b8f75bd
%{_sbindir}/dasdinfo
1409803
%{_sbindir}/fdasd
6ce1f4d
%{_sbindir}/lszdev
c69c48c
%{_sbindir}/vmcp
365ca29
%{_sbindir}/zipl
ea8f5ea
%{_sbindir}/zipl-editenv
a8e7617
%dir /lib/s390-tools
365ca29
/lib/s390-tools/{zipl,chreipl}_helper.*
365ca29
/lib/s390-tools/cpictl
365ca29
/lib/s390-tools/stage3.bin
ea8f5ea
/lib/s390-tools/zdev_id
365ca29
/lib/s390-tools/zdev-root-update
365ca29
/lib/s390-tools/zipl.conf
365ca29
%ghost %config(noreplace) %{_sysconfdir}/zipl.conf
ca6b193
%config(noreplace) %{_sysconfdir}/ziplenv
365ca29
%{_unitdir}/cpi.service
365ca29
%config(noreplace) %{_sysconfdir}/sysconfig/cpi
365ca29
/usr/lib/dracut/modules.d/95zdev/
365ca29
%{_mandir}/man5/zipl.conf.5*
f9a139c
%{_mandir}/man8/chreipl.8*
f9a139c
%{_mandir}/man8/chzdev.8*
a823de1
%{_mandir}/man8/cio_ignore.8*
365ca29
%{_mandir}/man8/dasdfmt.8*
b8f75bd
%{_mandir}/man8/dasdinfo.8*
1409803
%{_mandir}/man8/fdasd.8*
6ce1f4d
%{_mandir}/man8/lszdev.8*
c69c48c
%{_mandir}/man8/vmcp.8*
365ca29
%{_mandir}/man8/zipl.8*
ea8f5ea
%{_mandir}/man8/zipl-editenv.8*
365ca29
383f5e2
# Additional Fedora/RHEL specific stuff
b8f75bd
%ghost %config(noreplace) %{_sysconfdir}/dasd.conf
b8f75bd
%ghost %config(noreplace) %{_sysconfdir}/zfcp.conf
365ca29
%{_sbindir}/dasdconf.sh
365ca29
%{_sbindir}/normalize_dasd_arg
365ca29
%{_sbindir}/zfcpconf.sh
b8f75bd
%{_sbindir}/device_cio_free
b8f75bd
%{_sbindir}/dasd_cio_free
b8f75bd
%{_sbindir}/zfcp_cio_free
b8f75bd
%{_sbindir}/znet_cio_free
365ca29
%{_unitdir}/device_cio_free.service
365ca29
/usr/lib/udev/ccw_init
365ca29
%{_udevrulesdir}/40-z90crypt.rules
365ca29
%{_udevrulesdir}/56-dasd.rules
365ca29
%{_udevrulesdir}/56-zfcp.rules
365ca29
%{_udevrulesdir}/59-dasd.rules
365ca29
%{_udevrulesdir}/60-readahead.rules
365ca29
%{_udevrulesdir}/81-ccw.rules
ea8f5ea
%{_udevrulesdir}/81-dpm.rules
365ca29
%{_udevrulesdir}/90-cpi.rules
365ca29
%{_sysconfdir}/kernel/install.d/20-grubby.install
365ca29
%{_prefix}/lib/kernel/install.d/10-zfcpdump.install
365ca29
%{_prefix}/lib/kernel/install.d/20-zipl-kernel.install
365ca29
%{_prefix}/lib/kernel/install.d/52-zipl-rescue.install
365ca29
%{_prefix}/lib/kernel/install.d/91-zipl.install
365ca29
%{_prefix}/lib/modules-load.d/s390-pkey.conf
365ca29
365ca29
#
365ca29
# *********************** s390-tools base package  ***********************
365ca29
#
365ca29
0b15456
%package base
4295214
License:        MIT
0b15456
Summary:        S390 base tools
4b248d8
Requires:       gawk sed coreutils
0b15456
Requires:       sg3_utils
83347f5
Requires:       ethtool
1a182b3
Requires:       tar
b2e74b0
Requires:       file
365ca29
Requires:       s390utils-core = %{epoch}:%{version}-%{release}
fca7af8
%{?systemd_requires}
4b248d8
BuildRequires:  perl-generators
f7e20b2
BuildRequires:  ncurses-devel
056c251
BuildRequires:  glibc-static
e9f0a67
BuildRequires:  cryptsetup-devel >= 2.0.3
e9f0a67
BuildRequires:  json-c-devel
a8e0a7d
BuildRequires:  rpm-devel
1ec0396
BuildRequires:  glib2-devel
ce7722e
BuildRequires:  libxml2-devel
0b15456
0b15456
0b15456
%description base
0b15456
s390 base tools. This collection provides the following utilities:
0b15456
   * dasdfmt:
0b15456
     Low-level format ECKD DASDs with the classical linux disk layout or the
0b15456
     new z/OS compatible disk layout.
0b15456
0b15456
   * fdasd:
0b15456
     Create or modify partitions on ECKD DASDs formatted with the z/OS
0b15456
     compatible disk layout.
0b15456
0b15456
   * dasdview:
0b15456
     Display DASD and VTOC information or dump the contents of a DASD to the
0b15456
     console.
0b15456
0b15456
   * dasdinfo:
0b15456
     Display unique DASD ID, either UID or volser.
0b15456
0b15456
   * udev rules:
0b15456
     - 59-dasd.rules: rules for unique DASD device nodes created in /dev/disk/.
0b15456
0b15456
   * zipl:
0b15456
     Make DASDs or tapes bootable for system IPL or system dump.
0b15456
0b15456
   * zgetdump:
0b15456
     Retrieve system dumps from either tapes or DASDs.
0b15456
0b15456
   * qetharp:
0b15456
     Read and flush the ARP cache on OSA Express network cards.
0b15456
0b15456
   * tape390_display:
0b15456
     Display information on the message display facility of a zSeries tape
0b15456
     device.
0b15456
0b15456
   * tape390_crypt:
0b15456
     Control and query crypto settings for 3592 zSeries tape devices.
0b15456
0b15456
   * qethconf:
0b15456
     bash shell script simplifying the usage of qeth IPA (IP address
0b15456
     takeover), VIPA (Virtual IP address) and Proxy ARP.
0b15456
0b15456
   * dbginfo.sh:
0b15456
     Shell script collecting useful information about the current system for
0b15456
     debugging purposes.
0b15456
0b15456
   * zfcpdump:
0b15456
     Dump tool to create system dumps on fibre channel attached SCSI disks.
0b15456
     It is installed using the zipl command.
0b15456
0b15456
   * zfcpdump_v2:
0b15456
     Version 2 of the zfcpdump tool. Now based on the upstream 2.6.26 Linux
0b15456
     kernel.
0b15456
0b15456
   * ip_watcher:
0b15456
     Provides HiperSockets Network Concentrator functionality.
0b15456
     It looks for addresses in the HiperSockets and sets them as Proxy ARP
0b15456
     on the OSA cards. It also adds routing entries for all IP addresses
0b15456
     configured on active HiperSockets devices.
0b15456
     Use start_hsnc.sh to start HiperSockets Network Concentrator.
0b15456
0b15456
   * tunedasd:
0b15456
     Adjust tunable parameters on DASD devices.
0b15456
0b15456
   * vmconvert:
0b15456
     Convert system dumps created by the z/VM VMDUMP command into dumps with
0b15456
     LKCD format. These LKCD dumps can then be analyzed with the dump analysis
0b15456
     tool lcrash.
0b15456
0b15456
   * vmcp:
0b15456
     Allows Linux users to send commands to the z/VM control program (CP).
0b15456
     The normal usage is to invoke vmcp with the command you want to
0b15456
     execute. The response of z/VM is written to the standard output.
0b15456
0b15456
   * vmur:
0b15456
     Allows to work with z/VM spool file queues (reader, punch, printer).
0b15456
0b15456
   * zfcpdbf:
0b15456
     Display debug data of zfcp. zfcp provides traces via the s390 debug
0b15456
     feature. Those traces are filtered with the zfcpdbf script, i.e. merge
0b15456
     several traces, make it more readable etc.
0b15456
0b15456
   * scsi_logging_level:
0b15456
     Create, get or set the logging level for the SCSI logging facility.
0b15456
0b15456
   * zconf:
0b15456
     Set of scripts to configure and list status information of Linux for
0b15456
     zSeries IO devices.
0b15456
     - chccwdev:   Modify generic attributes of channel attached devices.
0b15456
     - lscss:      List channel subsystem devices.
0b15456
     - lsdasd:     List channel attached direct access storage devices (DASD).
0b15456
     - lsqeth:     List all qeth-based network devices with their corresponding
0b15456
                   settings.
0b15456
     - lstape:     List tape devices, both channel and FCP attached.
0b15456
     - lszfcp:     Shows information contained in sysfs about zfcp adapters,
0b15456
                   ports and units that are online.
0b15456
     - lschp:      List information about available channel-paths.
0b15456
     - chchp:      Modify channel-path state.
0b15456
     - lsluns:     List available SCSI LUNs depending on adapter or port.
0b15456
     - lszcrypt:   Show Information about zcrypt devices and configuration.
0b15456
     - chzcrypt:   Modify zcrypt configuration.
0b15456
     - znetconf:   List and configure network devices for System z network
0b15456
                   adapters.
0b15456
     - cio_ignore: Query and modify the contents of the CIO device driver
0b15456
                   blacklist.
0b15456
0b15456
   * dumpconf:
0b15456
     Allows to configure the dump device used for system dump in case a kernel
0b15456
     panic occurs. This tool can also be used as an init script for etc/init.d.
0b15456
     Prerequisite for dumpconf is a Linux kernel with the "dump on panic"
0b15456
     feature.
0b15456
0b15456
   * ipl_tools:
0b15456
     Tools set to configure and list reipl and shutdown actions.
0b15456
     - lsreipl: List information of reipl device.
0b15456
     - chreipl: Change reipl device settings.
0b15456
     - lsshut:  List actions which will be done in case of halt, poff, reboot
0b15456
                or panic.
0b15456
     - chshut:  Change actions which should be done in case of halt, poff,
0b15456
                reboot or panic.
0b15456
365ca29
   * cpi:
0b15456
    Allows to set the system and sysplex names from the Linux guest to
0b15456
    the HMC/SE using the Control Program Identification feature.
0b15456
365ca29
   * genprotimg:
974303a
    Tool for the creation of PV images. The image consists of a concatenation of
974303a
    a plain text boot loader, the encrypted components for kernel, initrd, and
974303a
    cmdline, and the integrity-protected PV header, containing metadata necessary for
974303a
    running the guest in PV mode. Protected VMs (PVM) are KVM VMs, where KVM can't
974303a
    access the VM's state like guest memory and guest registers anymore.
974303a
0b15456
For more information refer to the following publications:
0b15456
   * "Device Drivers, Features, and Commands" chapter "Useful Linux commands"
0b15456
   * "Using the dump tools"
0b15456
36ad014
%pre base
36ad014
# check for zkeyadm group and create it
36ad014
getent group zkeyadm > /dev/null || groupadd -r zkeyadm
36ad014
0b15456
%post base
fca7af8
%systemd_post dumpconf.service
0b15456
0b15456
%preun base
fca7af8
%systemd_preun dumpconf.service
fca7af8
fca7af8
%postun base
fca7af8
%systemd_postun_with_restart dumpconf.service
0b15456
0b15456
%files base
1cc3998
%doc README.md zdev/src/lszdev_usage.txt
0719e3d
%{_sbindir}/chccwdev
0719e3d
%{_sbindir}/chchp
fca7af8
%{_sbindir}/chcpumf
fca7af8
%{_sbindir}/chshut
0719e3d
%{_sbindir}/chzcrypt
fca7af8
%{_sbindir}/dasdstat
fca7af8
%{_sbindir}/dasdview
fca7af8
%{_sbindir}/dbginfo.sh
ce7722e
%{_sbindir}/hsavmcore
3d1d949
%{_sbindir}/hsci
fca7af8
%{_sbindir}/hyptop
fca7af8
%{_sbindir}/ip_watcher.pl
0719e3d
%{_sbindir}/lschp
a9bf2da
%{_sbindir}/lscpumf
0719e3d
%{_sbindir}/lscss
0719e3d
%{_sbindir}/lsdasd
ce7722e
%{_sbindir}/lshwc
0719e3d
%{_sbindir}/lsqeth
fca7af8
%{_sbindir}/lsluns
fca7af8
%{_sbindir}/lsreipl
0719e3d
%{_sbindir}/lsscm
fca7af8
%{_sbindir}/lsshut
1cc3998
%{_sbindir}/lsstp
0719e3d
%{_sbindir}/lstape
0719e3d
%{_sbindir}/lszcrypt
0719e3d
%{_sbindir}/lszfcp
ca6b193
%{_sbindir}/pai
0719e3d
%{_sbindir}/qetharp
0719e3d
%{_sbindir}/qethconf
0719e3d
%{_sbindir}/qethqoat
fca7af8
%{_sbindir}/scsi_logging_level
ea8f5ea
%{_sbindir}/sclpdbf
fca7af8
%{_sbindir}/start_hsnc.sh
0719e3d
%{_sbindir}/tape390_crypt
fca7af8
%{_sbindir}/tape390_display
0719e3d
%{_sbindir}/ttyrun
0719e3d
%{_sbindir}/tunedasd
fca7af8
%{_sbindir}/vmur
fca7af8
%{_sbindir}/xcec-bridge
01b858f
%{_sbindir}/zcryptctl
61130fa
%{_sbindir}/zcryptstats
fca7af8
%{_sbindir}/zfcpdbf
0719e3d
%{_sbindir}/zgetdump
6aab78b
%{_sbindir}/zipl-switch-to-blscfg
0719e3d
%{_sbindir}/znetconf
01b858f
%{_sbindir}/zpcictl
c05343e
%{_bindir}/dump2tar
974303a
%{_bindir}/genprotimg
4a5ecf8
%{_bindir}/mk-s390image
ca6b193
%{_bindir}/pvattest
ca6b193
%{_bindir}/pvextract-hdr
fca7af8
%{_bindir}/vmconvert
fca7af8
%{_bindir}/zkey
e9f0a67
%{_bindir}/zkey-cryptsetup
fca7af8
%{_unitdir}/dumpconf.service
0a5f094
%ghost %config(noreplace) %{_sysconfdir}/zipl.conf
0b15456
%config(noreplace) %{_sysconfdir}/sysconfig/dumpconf
ca6b193
%{_sysconfdir}/mdevctl.d/*
ca6b193
/usr/lib/dracut/modules.d/99ngdump/
c33643b
# own the mdevctl dirs until new release is available
c33643b
%dir /usr/lib/mdevctl
c33643b
%dir /usr/lib/mdevctl/scripts.d
c33643b
%dir /usr/lib/mdevctl/scripts.d/callouts
c33643b
/usr/lib/mdevctl/scripts.d/callouts/ap-check
365ca29
/lib/s390-tools/dumpconf
365ca29
/lib/s390-tools/lsznet.raw
1cc3998
%dir /lib/s390-tools/zfcpdump
365ca29
/lib/s390-tools/zfcpdump/zfcpdump-initrd
365ca29
/lib/s390-tools/znetcontrolunits
1cc3998
%{_libdir}/libekmfweb.so.*
ce7722e
%{_libdir}/libkmipclient.so.*
287377b
%dir %{_libdir}/zkey
1cc3998
%{_libdir}/zkey/zkey-ekmfweb.so
ce7722e
%{_libdir}/zkey/zkey-kmip.so
fca7af8
%{_mandir}/man1/dump2tar.1*
ca6b193
%{_mandir}/man1/genprotimg.1*
ca6b193
%{_mandir}/man1/pvattest.1*
ca6b193
%{_mandir}/man1/pvattest-create.1*
ca6b193
%{_mandir}/man1/pvattest-perform.1*
ca6b193
%{_mandir}/man1/pvattest-verify.1*
a27744e
%{_mandir}/man1/vmconvert.1*
fca7af8
%{_mandir}/man1/zkey.1*
e9f0a67
%{_mandir}/man1/zkey-cryptsetup.1*
1cc3998
%{_mandir}/man1/zkey-ekmfweb.1*
ce7722e
%{_mandir}/man1/zkey-kmip.1*
0b15456
%{_mandir}/man4/prandom.4*
ce7722e
%{_mandir}/man5/hsavmcore.conf.5*
0b15456
%{_mandir}/man8/chccwdev.8*
0b15456
%{_mandir}/man8/chchp.8*
056c251
%{_mandir}/man8/chcpumf.8*
0b15456
%{_mandir}/man8/chshut.8*
0b15456
%{_mandir}/man8/chzcrypt.8*
efa3adb
%{_mandir}/man8/dasdstat.8*
0b15456
%{_mandir}/man8/dasdview.8*
ca6b193
%{_mandir}/man8/dbginfo.sh.8*
0b15456
%{_mandir}/man8/dumpconf.8*
ce7722e
%{_mandir}/man8/hsavmcore.8*
3d1d949
%{_mandir}/man8/hsci.8*
f7e20b2
%{_mandir}/man8/hyptop.8*
0b15456
%{_mandir}/man8/lschp.8*
ca6b193
%{_mandir}/man8/lscpumf.8*
0b15456
%{_mandir}/man8/lscss.8*
0b15456
%{_mandir}/man8/lsdasd.8*
ca6b193
%{_mandir}/man8/lshwc.8*
0b15456
%{_mandir}/man8/lsluns.8*
0b15456
%{_mandir}/man8/lsqeth.8*
0b15456
%{_mandir}/man8/lsreipl.8*
f1ed814
%{_mandir}/man8/lsscm.8*
0b15456
%{_mandir}/man8/lsshut.8*
1cc3998
%{_mandir}/man8/lsstp.8*
0b15456
%{_mandir}/man8/lstape.8*
0b15456
%{_mandir}/man8/lszcrypt.8*
0b15456
%{_mandir}/man8/lszfcp.8*
ca6b193
%{_mandir}/man8/pai.8*
0b15456
%{_mandir}/man8/qetharp.8*
0b15456
%{_mandir}/man8/qethconf.8*
a087fe2
%{_mandir}/man8/qethqoat.8*
0b15456
%{_mandir}/man8/tape390_crypt.8*
0b15456
%{_mandir}/man8/tape390_display.8*
f7e20b2
%{_mandir}/man8/ttyrun.8*
0b15456
%{_mandir}/man8/tunedasd.8*
0b15456
%{_mandir}/man8/vmur.8*
01b858f
%{_mandir}/man8/zcryptctl.8*
61130fa
%{_mandir}/man8/zcryptstats.8*
ca6b193
%{_mandir}/man8/zfcpdbf.8*
0b15456
%{_mandir}/man8/zgetdump.8*
ca6b193
%{_mandir}/man8/zipl-switch-to-blscfg.8*
0b15456
%{_mandir}/man8/znetconf.8*
01b858f
%{_mandir}/man8/zpcictl.8*
a8e7617
%dir %{_datadir}/s390-tools
974303a
%{_datadir}/s390-tools/genprotimg/
a1273c9
%{_datadir}/s390-tools/netboot/
36ad014
%dir %attr(0770,root,zkeyadm) %{_sysconfdir}/zkey
ce7722e
%dir %attr(0770,root,zkeyadm) %{_sysconfdir}/zkey/kmip
ce7722e
%dir %attr(0770,root,zkeyadm) %{_sysconfdir}/zkey/kmip/profiles
ce7722e
%config(noreplace) %attr(0660,root,zkeyadm)%{_sysconfdir}/zkey/kmip/profiles/*.profile
36ad014
%dir %attr(0770,root,zkeyadm) %{_sysconfdir}/zkey/repository
1cc3998
%config(noreplace) %attr(0660,root,zkeyadm)%{_sysconfdir}/zkey/kms-plugins.conf
0b15456
383f5e2
# Additional Fedora/RHEL specific stuff
0b15456
/boot/tape0
0b15456
0b15456
#
0b15456
# *********************** s390-tools osasnmpd package  ***********************
0b15456
#
0b15456
%package osasnmpd
0b15456
Summary:        SNMP sub-agent for OSA-Express cards
0b15456
Requires:       net-snmp
02f5ea8
Requires:       psmisc
8f75616
BuildRequires:  net-snmp-devel
0b15456
0b15456
%description osasnmpd
0b15456
UCD-SNMP/NET-SNMP sub-agent implementing MIBs provided by OSA-Express
0b15456
features Fast Ethernet, Gigabit Ethernet, High Speed Token Ring and
0b15456
ATM Ethernet LAN Emulation in QDIO mode.
0b15456
0b15456
%files osasnmpd
0b15456
%{_sbindir}/osasnmpd
e8b1d98
%{_udevrulesdir}/57-osasnmpd.rules
0b15456
%{_mandir}/man8/osasnmpd.8*
0b15456
0b15456
#
0b15456
# *********************** s390-tools mon_statd package  **********************
0b15456
#
0b15456
%package mon_statd
0b15456
Summary:         Monitoring daemons for Linux in z/VM
0b15456
Requires:        coreutils
fca7af8
%{?systemd_requires}
0b15456
0b15456
%description mon_statd
0b15456
Monitoring daemons for Linux in z/VM:
0b15456
0b15456
  - mon_fsstatd: Daemon that writes file system utilization data to the
0b15456
                 z/VM monitor stream.
0b15456
0b15456
  - mon_procd:   Daemon that writes process information data to the z/VM
0b15456
                 monitor stream.
0b15456
0b15456
%post mon_statd
fca7af8
%systemd_post mon_fsstatd.service
fca7af8
%systemd_post mon_procd.service
0b15456
0b15456
%preun mon_statd
fca7af8
%systemd_preun mon_fsstatd.service
fca7af8
%systemd_preun mon_procd.service
fca7af8
fca7af8
%postun mon_statd
fca7af8
%systemd_postun_with_restart mon_fsstatd.service
fca7af8
%systemd_postun_with_restart mon_procd.service
0b15456
0b15456
%files mon_statd
0b15456
%{_sbindir}/mon_fsstatd
0b15456
%{_sbindir}/mon_procd
fca7af8
%config(noreplace) %{_sysconfdir}/sysconfig/mon_fsstatd
fca7af8
%config(noreplace) %{_sysconfdir}/sysconfig/mon_procd
fca7af8
%{_unitdir}/mon_fsstatd.service
fca7af8
%{_unitdir}/mon_procd.service
0b15456
%{_mandir}/man8/mon_fsstatd.8*
0b15456
%{_mandir}/man8/mon_procd.8*
0b15456
0b15456
#
0b15456
# *********************** s390-tools cpuplugd package  ***********************
0b15456
#
0b15456
%package cpuplugd
0b15456
Summary:         Daemon that manages CPU and memory resources
fca7af8
%{?systemd_requires}
19c274d
BuildRequires: systemd
0b15456
0b15456
%description cpuplugd
0b15456
Daemon that manages CPU and memory resources based on a set of rules.
0b15456
Depending on the workload CPUs can be enabled or disabled. The amount of
0b15456
memory can be increased or decreased exploiting the CMM1 feature.
0b15456
0b15456
%post cpuplugd
19c274d
%systemd_post cpuplugd.service
0b15456
0b15456
%preun cpuplugd
19c274d
%systemd_preun cpuplugd.service
19c274d
19c274d
%postun cpuplugd
19c274d
%systemd_postun_with_restart cpuplugd.service
0b15456
0b15456
%files cpuplugd
19c274d
%config(noreplace) %{_sysconfdir}/cpuplugd.conf
0b15456
%{_sbindir}/cpuplugd
0b15456
%{_mandir}/man5/cpuplugd.conf.5*
0b15456
%{_mandir}/man8/cpuplugd.8*
19c274d
%{_unitdir}/cpuplugd.service
0b15456
0b15456
#
0b15456
# *********************** s390-tools ziomon package  *************************
0b15456
#
0b15456
%package ziomon
0b15456
Summary:        S390 ziomon tools
8161782
Requires:       blktrace
8161782
Requires:       coreutils
8161782
Requires:       device-mapper-multipath
8161782
Requires:       gawk
8161782
Requires:       grep
8161782
Requires:       lsscsi
8161782
Requires:       procps-ng
8161782
Requires:       rsync
8161782
Requires:       sed
8161782
Requires:       tar
8161782
Requires:       util-linux
0b15456
0b15456
%description ziomon
0b15456
Tool set to collect data for zfcp performance analysis and report.
0b15456
0b15456
%files ziomon
0b15456
%{_sbindir}/ziomon
0b15456
%{_sbindir}/ziomon_fcpconf
0b15456
%{_sbindir}/ziomon_mgr
0b15456
%{_sbindir}/ziomon_util
0b15456
%{_sbindir}/ziomon_zfcpdd
0b15456
%{_sbindir}/ziorep_config
0b15456
%{_sbindir}/ziorep_traffic
0b15456
%{_sbindir}/ziorep_utilization
0b15456
%{_mandir}/man8/ziomon.8*
0b15456
%{_mandir}/man8/ziomon_fcpconf.8*
0b15456
%{_mandir}/man8/ziomon_mgr.8*
0b15456
%{_mandir}/man8/ziomon_util.8*
0b15456
%{_mandir}/man8/ziomon_zfcpdd.8*
0b15456
%{_mandir}/man8/ziorep_config.8*
0b15456
%{_mandir}/man8/ziorep_traffic.8*
0b15456
%{_mandir}/man8/ziorep_utilization.8*
0b15456
0b15456
#
0b15456
# *********************** s390-tools iucvterm package  *************************
0b15456
#
0b15456
%package iucvterm
0b15456
Summary:        z/VM IUCV terminal applications
f7e20b2
Requires(pre):  shadow-utils
0425b96
Requires(post): grep
0425b96
Requires(postun): grep
0b15456
BuildRequires:  gettext
056c251
BuildRequires: systemd
0b15456
0b15456
%description iucvterm
0b15456
A set of applications to provide terminal access via the z/VM Inter-User
0b15456
Communication Vehicle (IUCV). The terminal access does not require an
0b15456
active TCP/IP connection between two Linux guest operating systems.
0b15456
0b15456
- iucvconn:  Application to establish a terminal connection via z/VM IUCV.
0b15456
- iucvtty:   Application to provide terminal access via z/VM IUCV.
0b15456
- ts-shell:  Terminal server shell to authorize and control IUCV terminal
0b15456
             connections for individual Linux users.
0b15456
0b15456
%pre iucvterm
0b15456
# check for ts-shell group and create it
0b15456
getent group ts-shell > /dev/null || groupadd -r ts-shell
0b15456
0b15456
%post iucvterm
0b15456
# /etc/shells is provided by "setup"
0b15456
grep -q '^/usr/bin/ts-shell$' /etc/shells \
0b15456
    || echo "/usr/bin/ts-shell" >> /etc/shells
0b15456
0b15456
%postun iucvterm
0b15456
if [ $1 = 0 ]
0b15456
then
0b15456
    # remove ts-shell from /etc/shells on uninstall
0b15456
    grep -v '^/usr/bin/ts-shell$' /etc/shells > /etc/shells.ts-new
0b15456
    mv /etc/shells.ts-new /etc/shells
0b15456
    chmod 0644 /etc/shells
0b15456
fi
0b15456
0b15456
%files iucvterm
0b15456
%dir %{_sysconfdir}/iucvterm
0b15456
%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-audit-systems.conf
0b15456
%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-authorization.conf
0b15456
%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-shell.conf
0b15456
%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/unrestricted.conf
0b15456
%{_bindir}/iucvconn
0b15456
%{_bindir}/iucvtty
0b15456
%{_bindir}/ts-shell
0b15456
%{_sbindir}/chiucvallow
0b15456
%{_sbindir}/lsiucvallow
0b15456
%dir %attr(2770,root,ts-shell) /var/log/ts-shell
0b15456
%doc iucvterm/doc/ts-shell
0b15456
%{_mandir}/man1/iucvconn.1*
0b15456
%{_mandir}/man1/iucvtty.1*
0b15456
%{_mandir}/man1/ts-shell.1*
0b15456
%{_mandir}/man7/af_iucv.7*
0b15456
%{_mandir}/man8/chiucvallow.8*
0b15456
%{_mandir}/man9/hvc_iucv.9*
056c251
%{_unitdir}/iucvtty-login@.service
056c251
%{_unitdir}/ttyrun-getty@.service
0b15456
0b15456
0b15456
#
f7e20b2
# *********************** cmsfs-fuse package  ***********************
f7e20b2
#
f7e20b2
%package cmsfs-fuse
f7e20b2
Summary:        CMS file system based on FUSE
6dc91fa
BuildRequires:  fuse3-devel
6dc91fa
Requires:       fuse3
b385215
Requires:       glibc-gconv-extra
a8e0a7d
Obsoletes:      %{name}-cmsfs < 2:2.7.0-3
f7e20b2
f7e20b2
%description cmsfs-fuse
f7e20b2
This package contains the CMS file system based on FUSE.
f7e20b2
f7e20b2
%files cmsfs-fuse
f7e20b2
%dir %{_sysconfdir}/cmsfs-fuse
f7e20b2
%config(noreplace) %{_sysconfdir}/cmsfs-fuse/filetypes.conf
f7e20b2
%{_bindir}/cmsfs-fuse
f7e20b2
%{_mandir}/man1/cmsfs-fuse.1*
f7e20b2
f7e20b2
#
52a75a9
# *********************** zdsfs package  ***********************
52a75a9
#
52a75a9
%package zdsfs
52a75a9
Summary:        z/OS data set access based on FUSE
6dc91fa
BuildRequires:  fuse3-devel
a9bf2da
BuildRequires:  libcurl-devel
6dc91fa
Requires:       fuse3
52a75a9
52a75a9
%description zdsfs
52a75a9
This package contains the z/OS data set access based on FUSE.
52a75a9
52a75a9
%files zdsfs
52a75a9
%{_bindir}/zdsfs
52a75a9
%{_mandir}/man1/zdsfs.1*
52a75a9
52a75a9
#
056c251
# *********************** hmcdrvfs package  ***********************
056c251
#
056c251
%package hmcdrvfs
056c251
Summary:       HMC drive file system based on FUSE
6dc91fa
BuildRequires: fuse3-devel
6dc91fa
Requires:      fuse3
056c251
056c251
%description hmcdrvfs
056c251
This package contains a HMC drive file system based on FUSE and a tool
056c251
to list files and directories.
056c251
056c251
%files hmcdrvfs
056c251
%{_bindir}/hmcdrvfs
056c251
%{_sbindir}/lshmc
056c251
%{_mandir}/man1/hmcdrvfs.1*
056c251
%{_mandir}/man8/lshmc.8*
056c251
056c251
#
056c251
# *********************** cpacfstatsd package  ***********************
056c251
#
056c251
%package cpacfstatsd
056c251
Summary:       Monitor and maintain CPACF activity counters
056c251
Requires(post): systemd
056c251
Requires(preun): systemd
056c251
Requires(postun): systemd
234b2c5
Requires(pre): shadow-utils
056c251
BuildRequires: systemd
473c14c
BuildRequires: systemd-devel
056c251
056c251
%description cpacfstatsd
056c251
The cpacfstats tools provide a client/server application set to monitor
056c251
and maintain CPACF activity counters.
056c251
056c251
%post cpacfstatsd
056c251
%systemd_post cpacfstatsd.service
056c251
056c251
%preun cpacfstatsd
056c251
%systemd_preun cpacfstatsd.service
056c251
056c251
%postun cpacfstatsd
056c251
%systemd_postun_with_restart cpacfstatsd.service
056c251
234b2c5
%pre cpacfstatsd
234b2c5
getent group cpacfstats >/dev/null || groupadd -r cpacfstats
234b2c5
056c251
%files cpacfstatsd
056c251
%{_bindir}/cpacfstats
056c251
%{_sbindir}/cpacfstatsd
056c251
%{_mandir}/man1/cpacfstats.1*
056c251
%{_mandir}/man8/cpacfstatsd.8*
056c251
%{_unitdir}/cpacfstatsd.service
056c251
056c251
#
b385215
# *********************** chreipl-fcp-mpath package  ***********************
b385215
#
b385215
%package chreipl-fcp-mpath
b385215
Summary:          Use multipath information for re-IPL path failover
b385215
BuildRequires:    make
b385215
BuildRequires:    bash
b385215
BuildRequires:    coreutils
6dc91fa
%if 0%{?with_pandoc}
b385215
BuildRequires:    pandoc
6dc91fa
%endif
b385215
BuildRequires:    gawk
b385215
BuildRequires:    gzip
b385215
BuildRequires:    sed
b385215
Requires:         bash
b385215
Requires:         coreutils
b385215
Requires:         util-linux
b385215
Requires:         systemd-udev
b385215
Requires:         device-mapper-multipath
b385215
Requires:         dracut
b385215
b385215
%description chreipl-fcp-mpath
b385215
The chreipl-fcp-mpath toolset monitors udev events about paths to the re-IPL
b385215
volume. If the currently configured FCP re-IPL path becomes unavailable, the
b385215
toolset checks for operational paths to the same volume. If available, it
b385215
reconfigures the FCP re-IPL settings to use an operational path.
b385215
b385215
%files chreipl-fcp-mpath
b385215
%doc chreipl-fcp-mpath/README.md
6dc91fa
%if 0%{?with_pandoc}
b385215
%doc chreipl-fcp-mpath/README.html
6dc91fa
%endif
b385215
%dir %{_prefix}/lib/chreipl-fcp-mpath/
b385215
%{_prefix}/lib/chreipl-fcp-mpath/*
b385215
%{_prefix}/lib/dracut/dracut.conf.d/70-chreipl-fcp-mpath.conf
b385215
%{_prefix}/lib/udev/chreipl-fcp-mpath-is-ipl-tgt
b385215
%{_prefix}/lib/udev/chreipl-fcp-mpath-is-ipl-vol
b385215
%{_prefix}/lib/udev/chreipl-fcp-mpath-is-reipl-zfcp
b385215
%{_prefix}/lib/udev/chreipl-fcp-mpath-record-volume-identifier
b385215
%{_prefix}/lib/udev/chreipl-fcp-mpath-try-change-ipl-path
b385215
%{_udevrulesdir}/70-chreipl-fcp-mpath.rules
b385215
%{_mandir}/man7/chreipl-fcp-mpath.7*
b385215
b385215
#
0b15456
# *********************** devel package  ***********************
0b15456
#
0b15456
%package devel
0b15456
Summary:        Development files
0b15456
Petr Šabata ab939b3
Requires: %{name}-base%{?_isa} = %{epoch}:%{version}-%{release}
1cc3998
0b15456
%description devel
0b15456
User-space development files for the s390/s390x architecture.
0b15456
0b15456
%files devel
1cc3998
%{_includedir}/%{name}/
1cc3998
%{_includedir}/ekmfweb/
ce7722e
%{_includedir}/kmipclient/
1cc3998
%{_libdir}/libekmfweb.so
ce7722e
%{_libdir}/libkmipclient.so
0b15456
0b15456
0b15456
%changelog
9e98b44
* Tue Jan 31 2023 Dan Horák <dan[at]danny.cz> - 2:2.25.0-4
9e98b44
- add post GA fixes
9e98b44
607a682
* Mon Jan 23 2023 Dan Horák <dan[at]danny.cz> - 2:2.25.0-3
607a682
- revert the kernel install script change
607a682
685ce32
* Thu Jan 19 2023 Dan Horák <dan[at]danny.cz> - 2:2.25.0-2
685ce32
- update kernel install script to write /etc/kernel/cmdline
685ce32
c33643b
* Fri Dec 09 2022 Dan Horák <dan[at]danny.cz> - 2:2.25.0-1
c33643b
- rebased to 2.25.0
c33643b
bef2b35
* Tue Nov 22 2022 Dan Horák <dan[at]danny.cz> - 2:2.24.0-2
bef2b35
- update for Transparent DASD PPRC (Peer-to-Peer Remote Copy) handling
bef2b35
af41c81
* Thu Nov 10 2022 Dan Horák <dan[at]danny.cz> - 2:2.24.0-1
af41c81
- rebased to 2.24.0
af41c81
473c14c
* Fri Aug 19 2022 Dan Horák <dan[at]danny.cz> - 2:2.23.0-1
473c14c
- rebased to 2.23.0
473c14c
a7424a8
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.22.0-2
a7424a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
a7424a8
ca6b193
* Mon Jun 20 2022 Dan Horák <dan[at]danny.cz> - 2:2.22.0-1
ca6b193
- rebased to 2.22.0
ca6b193
cc536fa
* Tue May 31 2022 Dan Horák <dan[at]danny.cz> - 2:2.21.0-2
cc536fa
- do not fail on emtpy /proc/cmdline when installing kernel (#1899759)
cc536fa
a2cb8e5
* Fri Apr 22 2022 Dan Horák <dan[at]danny.cz> - 2:2.21.0-1
a2cb8e5
- rebased to 2.21.0
a2cb8e5
6dc91fa
* Mon Feb 07 2022 Dan Horák <dan[at]danny.cz> - 2:2.20.0-1
6dc91fa
- rebased to 2.20.0
6dc91fa
- switch to fuse3
6dc91fa
ad7942b
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.19.0-3
ad7942b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
ad7942b
a483890
* Fri Nov 26 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-2
a483890
- update ccw udev rules
a483890
b385215
* Fri Nov 12 2021 Dan Horák <dan[at]danny.cz> - 2:2.19.0-1
b385215
- rebased to 2.19.0
b385215
- cmsfs-fuse Requires glibc-gconv-extra (#2022652)
b385215
c69c48c
* Wed Oct 20 2021 Dan Horák <dan[at]danny.cz> - 2:2.18.0-2
c69c48c
- move vmcp to core (#1931287)
c69c48c
ea8f5ea
* Tue Oct 05 2021 Dan Horák <dan[at]danny.cz> - 2:2.18.0-1
ea8f5ea
- rebased to 2.18.0
ea8f5ea
0830207
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.17.0-2
0830207
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
0830207
ce7722e
* Wed Jul 07 2021 Dan Horák <dan[at]danny.cz> - 2:2.17.0-1
ce7722e
- rebased to 2.17.0
ce7722e
- zfcpconf: set exit code explicitly (#1977434)
ce7722e
- mk-s390image script requires file (#1973239)
ce7722e
- drop obsolete setting from device_cio_free.service (#1972449)
ce7722e
0240965
* Mon Mar 01 2021 Dan Horák <dan[at]danny.cz> - 2:2.16.0-2
0240965
- drop superfluous Require from s390utils-base
0240965
3d1d949
* Wed Feb 24 2021 Dan Horák <dan[at]danny.cz> - 2:2.16.0-1
3d1d949
- rebased to 2.16.0
3d1d949
d792b32
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.15.1-5
d792b32
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
d792b32
6ce1f4d
* Tue Jan 05 2021 Dan Horák <dan[at]danny.cz> - 2:2.15.1-4
6ce1f4d
- move lszdev to core
6ce1f4d
1409803
* Mon Jan 04 2021 Dan Horák <dan[at]danny.cz> - 2:2.15.1-3
1409803
- move fdasd to core
1409803
Petr Šabata ab939b3
* Thu Oct 29 2020 Petr Šabata <contyk@redhat.com> - 2:2.15.1-2
Petr Šabata ab939b3
- Fix the development package dependency by adding epoch
Petr Šabata ab939b3
0450181
* Thu Oct 29 2020 Dan Horák <dan[at]danny.cz> - 2:2.15.1-1
0450181
- rebased to 2.15.1
0450181
4a5ecf8
* Wed Oct 28 2020 Dan Horák <dan[at]danny.cz> - 2:2.15.0-2
4a5ecf8
- move mk-s390image to /usr/bin
4a5ecf8
1cc3998
* Tue Oct 27 2020 Dan Horák <dan[at]danny.cz> - 2:2.15.0-1
1cc3998
- rebased to 2.15.0
1cc3998
1b35631
* Wed Oct 07 2020 Dan Horák <dan[at]danny.cz> - 2:2.14.0-4
1b35631
- update scripts for https://fedoraproject.org/wiki/Changes/NetworkManager_keyfile_instead_of_ifcfg_rh
1b35631
83bfc0e
* Mon Sep 21 2020 Dan Horák <dan[at]danny.cz> - 2:2.14.0-3
83bfc0e
- rebuilt for net-snmp 5.9
83bfc0e
cf1344b
* Wed Aug 26 2020 Dan Horák <dan[at]danny.cz> - 2:2.14.0-2
a895d0c
- add support for auto LUN scan to zfcpconf.sh (#1552697)
a895d0c
a9bf2da
* Tue Aug 25 2020 Dan Horák <dan[at]danny.cz> - 2:2.14.0-1
a9bf2da
- rebased to 2.14.0
a9bf2da
1f19dda
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.13.0-5
1f19dda
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1f19dda
6f6a4de
* Fri Jul 03 2020 Javier Martinez Canillas <javierm@redhat.com> - 2:2.13.0-4
6f6a4de
- add a default entry in zipl.conf if there isn't one present (#1698363)
6f6a4de
365ca29
* Tue Jun 09 2020 Jakub Čajka <jcajka@redhat.com> - 2:2.13.0-3
365ca29
- split off core package with basic functionalities and reduced deps from base sub-package
365ca29
6b21143
* Mon Jun 01 2020 Dan Horák <dan[at]danny.cz> - 2:2.13.0-2
6b21143
- avoid dependency on network-scripts (part of PR #4)
6b21143
974303a
* Mon May 11 2020 Dan Horák <dan[at]danny.cz> - 2:2.13.0-1
974303a
- rebased to 2.13.0
974303a
58aa250
* Wed Apr 22 2020 Dan Horák <dan@danny.cz> - 2:2.12.0-4
58aa250
- rebuilt for json-c soname bump
58aa250
7896217
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.12.0-3
7896217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
7896217
6e980e4
* Tue Jan 14 2020 Dan Horák <dan[at]danny.cz> - 2:2.12.0-2
6e980e4
- fix service order after switching to real root file system (#1790496, #1790790)
6e980e4
920a9af
* Mon Jan 06 2020 Dan Horák <dan[at]danny.cz> - 2:2.12.0-1
920a9af
- rebased to 2.12.0
920a9af
4295214
* Fri Dec 13 2019 Dan Horák <dan[at]danny.cz> - 2:2.11.0-4
4295214
- drop src_vipa (#1781683)
4295214
- kernel-install: skip BOOT_IMAGE param when copying the cmdline to BLS snippets
4295214
594bda1
* Mon Dec 02 2019 Dan Horák <dan[at]danny.cz> - 2:2.11.0-3
594bda1
- apply kernel install/update script fixes from #1755899, #1778243
594bda1
cb14520
* Mon Dec 02 2019 Dan Horák <dan[at]danny.cz> - 2:2.11.0-2
cb14520
- apply kernel install/update script fixes from #1600480, #1665060
87ca1f4
- merge stage3 signing support from RHEL
cb14520
18c25ca
* Mon Sep 09 2019 Dan Horák <dan[at]danny.cz> - 2:2.11.0-1
18c25ca
- rebased to 2.11.0
18c25ca
b421055
* Mon Aug 05 2019 Dan Horák <dan[at]danny.cz> - 2:2.10.0-1
b421055
- rebased to 2.10.0
b421055
a8004b6
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.9.0-4
a8004b6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a8004b6
4f95e67
* Tue Jul 02 2019 Dan Horák <dan[at]danny.cz> - 2:2.9.0-3
4f95e67
- fix /tmp being deleted when kernel-core is installed in a container (#1726286) (javierm)
4f95e67
81aaf37
* Tue Jun 11 17:21:59 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:2.9.0-2
81aaf37
- Rebuild for RPM 4.15
81aaf37
61130fa
* Wed May 22 2019 Dan Horák <dan[at]danny.cz> - 2:2.9.0-1
61130fa
- rebased to 2.9.0
61130fa
1a182b3
* Thu May 02 2019 Dan Horák <dan[at]danny.cz> - 2:2.8.0-3
1a182b3
- dbginfo.sh needs tar (#1705628)
1a182b3
b1b957a
* Sat Mar 09 2019 Dan Horák <dan[at]danny.cz> - 2:2.8.0-2
b1b957a
- fix building zipl with gcc9 (#1687085)
b1b957a
bd0e3fb
* Mon Feb 18 2019 Dan Horák <dan[at]danny.cz> - 2:2.8.0-1
bd0e3fb
- rebased to 2.8.0
bd0e3fb
6fa2fea
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.7.1-4
6fa2fea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6fa2fea
234b2c5
* Mon Jan 28 2019 Dan Horák <dan[at]danny.cz> - 2:2.7.1-3
234b2c5
- create cpacfstats group needed by cpacfstatsd
234b2c5
b45c50c
* Thu Jan 10 2019 Dan Horák <dan[at]danny.cz> - 2:2.7.1-2
b45c50c
- load protected key support kernel module early on boot
b45c50c
51e189a
* Wed Jan 02 2019 Dan Horák <dan[at]danny.cz> - 2:2.7.1-1
51e189a
- rebased to 2.7.1
51e189a
95b85f6
* Wed Dec 05 2018 Dan Horák <dan[at]danny.cz> - 2:2.7.0-4
95b85f6
- fix deps for dropped cmsfs subpackage
95b85f6
a8e0a7d
* Mon Nov 19 2018 Dan Horák <dan[at]danny.cz> - 2:2.7.0-3
a8e0a7d
- drop the original cmsfs subpackage
a8e0a7d
b0eb991
* Tue Nov 06 2018 Javier Martinez Canillas <javierm@redhat.com> - 2:2.7.0-2
b0eb991
- Make zipl to use the BLS title field as the IPL section name
b0eb991
01b858f
* Wed Oct 31 2018 Dan Horák <dan[at]danny.cz> - 2:2.7.0-1
01b858f
- rebased to 2.7.0
01b858f
2ff30e7
* Mon Oct 22 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-8
2ff30e7
- don't relink the zkey tools
2ff30e7
c301cb5
* Mon Oct 15 2018 Peter Jones <pjones@redhat.com> - 2.6.0-7
c301cb5
- Make the blscfg sort order match what grub2 and grubby do. (pjones)
c301cb5
- Add a ~debug suffix instead of -debug to sort it correctly. (javierm)
c301cb5
2f4b67c
* Mon Oct 01 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-6
2f4b67c
- Fix kernel-install scripts issues
2f4b67c
a8d596d
* Fri Sep 21 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-5
a8d596d
- Makefile cleanups
a8d596d
8473d59
* Mon Sep 17 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-4
8473d59
- drop redundant systemd services installation
8473d59
7ffae6d
* Fri Sep 14 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-3
7ffae6d
- add FIEMAP support into zipl
7ffae6d
4b248d8
* Tue Aug 14 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-2
4b248d8
- fix R:/BR: perl
4b248d8
e9f0a67
* Fri Aug 10 2018 Dan Horák <dan[at]danny.cz> - 2:2.6.0-1
e9f0a67
- rebased to 2.6.0
e9f0a67
- include zdev dracut module
e9f0a67
36ad014
* Tue Jul 31 2018 Dan Horák <dan[at]danny.cz> - 2:2.5.0-5
36ad014
- add missing zkey infrastructure (#1610242)
36ad014
877da84
* Fri Jul 27 2018 Dan Horák <dan[at]danny.cz> - 2:2.5.0-4
877da84
- don't override TERM for console
877da84
f25abae
* Thu Jul 26 2018 Dan Horák <dan[at]danny.cz> - 2:2.5.0-3
f25abae
- network-scripts are required for network device initialization
f25abae
8a861db
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.5.0-2
8a861db
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8a861db
dbc645a
* Mon Jun 11 2018 Dan Horák <dan[at]danny.cz> - 2:2.5.0-1
dbc645a
- rebased to 2.5.0
dbc645a
6aab78b
* Thu May 24 2018 Javier Martinez Canillas <javierm@redhat.com> - 2:2.4.0-2
6aab78b
- zipl: Add BootLoaderSpec support
6aab78b
- Add kernel-install scripts to create BLS fragment files
6aab78b
fe78d02
* Wed May 09 2018 Dan Horák <dan[at]danny.cz> - 2:2.4.0-1
fe78d02
- rebased to 2.4.0
fe78d02
464c5cf
* Fri Apr 13 2018 Dan Horák <dan[at]danny.cz> - 2:2.3.0-3
464c5cf
- fix building zipl with PIE (#1566140)
464c5cf
7b458c2
* Mon Mar 12 2018 Dan Horák <dan[at]danny.cz> - 2:2.3.0-2
7b458c2
- fix LDFLAGS injection (#1552661)
7b458c2
00a29e6
* Wed Feb 21 2018 Rafael Santos <rdossant@redhat.com> - 2:2.3.0-1
00a29e6
- rebased to 2.3.0
00a29e6
6e58e0e
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.2.0-3
6e58e0e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
6e58e0e
732529c
* Mon Jan 22 2018 Dan Horák <dan[at]danny.cz> - 2:2.2.0-2
732529c
- fix build with non-standard %%dist
732529c
2136cc0
* Thu Dec 07 2017 Dan Horák <dan[at]danny.cz> - 2:2.2.0-1
2136cc0
- rebased to 2.2.0
2136cc0
a1273c9
* Mon Sep 25 2017 Dan Horák <dan[at]danny.cz> - 2:2.1.0-1
a1273c9
- rebased to 2.1.0
a1273c9
eafdf58
* Wed Aug 23 2017 Dan Horák <dan[at]danny.cz> - 2:2.0.0-1
eafdf58
- rebased to first public release on github, functionally same as 1.39.0
eafdf58
- relicensed to MIT
eafdf58
fca7af8
* Wed Aug 23 2017 Dan Horák <dan[at]danny.cz> - 2:1.39.0-1
fca7af8
- rebased to 1.39.0
fca7af8
- completed switch to systemd
fca7af8
- further cleanups and consolidation
fca7af8
630487b
* Wed Aug 16 2017 Dan Horák <dan@danny.cz> - 2:1.37.1-4
630487b
- rebuild for librpm soname bump in rpm 4.13.90
630487b
4436a3a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.37.1-3
4436a3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
4436a3a
00742af
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.37.1-2
00742af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
00742af
c05343e
* Fri May 19 2017 Dan Horák <dan[at]danny.cz> - 2:1.37.1-1
c05343e
- rebased to 1.37.1
c05343e
- removed chmem/lsmem as they are now provided by util-linux >= 2.30 (#1452792)
c05343e
6edd79a
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.36.1-2
6edd79a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6edd79a
3b8ed19
* Thu Dec 01 2016 Dan Horák <dan[at]danny.cz> - 2:1.36.1-1
3b8ed19
- rebased to 1.36.1
3b8ed19
19c274d
* Wed Sep 07 2016 Dan Horák <dan[at]danny.cz> - 2:1.36.0-1
19c274d
- rebased to 1.36.0
19c274d
- switch cpuplugd to systemd service
19c274d
be742c4
* Fri Apr 22 2016 Dan Horák <dan[at]danny.cz> - 2:1.34.0-1
be742c4
- rebased to 1.34.0
be742c4
0ecf7ba
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.30.0-3
0ecf7ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0ecf7ba
5f6d5ee
* Thu Oct 01 2015 Dan Horák <dan[at]danny.cz> - 2:1.30.0-2
5f6d5ee
- rebuild for librpm soname bump
5f6d5ee
9ef764d
* Fri Jul 17 2015 Dan Horák <dan[at]danny.cz> - 2:1.30.0-1
9ef764d
- rebased to 1.30.0
9ef764d
056c251
* Tue Jun 23 2015 Dan Horák <dan[at]danny.cz> - 2:1.29.0-1
056c251
- rebased to 1.29.0
056c251
- dropped daemon hardening patch as hardening is enabled globally
056c251
- added hmcdrvfs and cpacfstatsd subpackages
056c251
- install systemd units where available
056c251
d7aa083
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.23.0-16
d7aa083
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d7aa083
417b9f0
* Tue Apr 07 2015 Dan Horák <dan[at]danny.cz> - 2:1.23.0-15
417b9f0
- remove bashism from zfcpconf.sh
417b9f0
52a75a9
* Wed Jan 28 2015 Dan Horák <dan[at]danny.cz> - 2:1.23.0-14
52a75a9
- refresh from RHEL-7
52a75a9
 - update patches
52a75a9
 - add zdsfs subpackage
52a75a9
 - rebase src_vipa to 2.1.0
52a75a9
8161782
* Thu Oct 09 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-13
8161782
- update device_cio_free script
8161782
- udpate Requires for ziomon subpackage
8161782
cb471f7
* Wed Jun 11 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-12
cb471f7
- update for -Werror=format-security
cb471f7
005a97d
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.23.0-11
005a97d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
005a97d
a1d11a8
* Tue Mar 04 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-10
a1d11a8
- fix zFCP device discovery in anaconda GUI (#1054691)
a1d11a8
826b40f
* Mon Feb 10 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-9
826b40f
- znetconf: Allow for 16-char network interface names (#1062285)
826b40f
- qetharp: Allow for 16-char network interface names (#1062250)
826b40f
eac4499
* Mon Feb 03 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-8
eac4499
- znetconf,lsqeth: Allow for 16-char network interface name (#1060303)
eac4499
26ce349
* Wed Jan 29 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-7
26ce349
- zipl: Fix zfcpdump "struct job_ipl_data" initialization (#1058856)
26ce349
c69f032
* Wed Jan 15 2014 Dan Horák <dan[at]danny.cz> - 2:1.23.0-6
c69f032
- zipl: fix segmentation fault in automenu array (#1017541)
c69f032
- zfcpconf.sh: check current online state before setting zfcp device online (#1042496)
c69f032
ba2d5f1
* Tue Nov 19 2013 Dan Horák <dan[at]danny.cz> - 2:1.23.0-5
ba2d5f1
- dbginfo.sh: enhancements for script execution and man page (#1031144)
ba2d5f1
- dbginfo.sh: avoid double data collection (#1032068)
ba2d5f1
b843486
* Wed Nov 06 2013 Dan Horák <dan[at]danny.cz> - 2:1.23.0-4
b843486
- build daemons hardened (#881250)
b843486
- zipl: Use "possible_cpus" kernel parameter (#1016180)
b843486
d93a030
* Wed Aug 21 2013 Dan Horák <dan[at]danny.cz> - 2:1.23.0-3
d93a030
- dbginfo.sh: Avoiding exclusion list for pipes in sysfs (#996732)
d93a030
- zipl: Fix zipl "--force" option for DASD multi-volume dump (#997361)
d93a030
fac999b
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.23.0-2
fac999b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
fac999b
d9a5b0a
* Wed Jul 24 2013 Dan Horák <dan[at]danny.cz> - 2:1.23.0-1
e9ac32a
- rebased to 1.23 (#804774)
e9ac32a
9255449
* Wed Jun 05 2013 Dan Horák <dan[at]danny.cz> - 2:1.20.0-5
9255449
- update with patches from RHEL-6
9255449
- rebase zIPL to 1.21 to fix booting from FBA DASD (#970859)
9255449
02f5ea8
* Tue May 21 2013 Dan Horák <dan[at]danny.cz> - 2:1.20.0-4
02f5ea8
- drop the libzfcphbaapi subpackage as it is moved to its own package (#963670)
02f5ea8
- update the zfcp udev rules (#958197)
02f5ea8
- fix runtime dependencies for osasnmpd (#965413)
02f5ea8
2497f58
* Wed Mar 27 2013 Dan Horák <dan[at]danny.cz> - 2:1.20.0-3
2497f58
- disable libzfcphbaapi subpackage, fails to build with recent kernels
2497f58
c4e809d
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.20.0-2
c4e809d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c4e809d
8047935
* Wed Dec 19 2012 Dan Horák <dan[at]danny.cz> - 2:1.20.0-1
8047935
- updated to 1.20.0 (#804774)
8047935
8f75616
* Thu Nov 22 2012 Dan Horák <dan[at]danny.cz> - 2:1.19.0-4
8f75616
- clean BuildRequires a bit
8f75616
d9a5b0a
* Mon Sep 17 2012 Dan Horák <dan[at]danny.cz> - 2:1.19.0-3
8875542
- zipl: Flush disk buffers before installing IPL record (#857814)
8875542
bf8cdf5
* Mon Aug 27 2012 Dan Horák <dan[at]danny.cz> 2:1.19.0-2
8875542
- add support for CEX4 devices to chzcrypt/lszcrypt (#847092)
bf8cdf5
a087fe2
* Mon Aug 27 2012 Dan Horák <dan[at]danny.cz> 2:1.19.0-1
a087fe2
- updated to 1.19.0 (#804774)
6a97815
- fixed syntax in s390.sh script (#851096)
6a97815
- spec cleanup
a087fe2
24e8c7b
* Tue Aug 21 2012 Dan Horák <dan[at]danny.cz> 2:1.17.0-1
24e8c7b
- updated to 1.17.0
24e8c7b
- add support for new storage device on System z (#847086)
24e8c7b
189dbe4
* Thu Aug 16 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-11
189dbe4
- fix libzfcphbaapi for recent kernels
189dbe4
ca75bed
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.16.0-10
ca75bed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ca75bed
0355cd1
* Fri May 25 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-9
0355cd1
- improve DASD parameters handling in normalize_dasd_arg (#824807)
0355cd1
8c7c2bc
* Wed May 23 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-8
8c7c2bc
- add normalize_dasd_arg script (#823078)
8c7c2bc
83347f5
* Mon May 14 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-7
83347f5
- ethtool is required by lsqeth (#821421)
83347f5
b7bb250
* Fri May 11 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-6
b7bb250
- updated the Fedora patch set - no vol_id tool in udev (#819530)
b7bb250
0a5f094
* Fri May  4 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-5
0a5f094
- zipl.conf must be owned by s390utils-base (#818877)
0a5f094
0873b75
* Tue Apr 17 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-4
0873b75
- install the z90crypt udev rule (moved here from the udev package)
0873b75
ca07d6e
* Tue Apr 10 2012 Dan Horák <dan[at]danny.cz> 2:1.16.0-3
ca07d6e
- include fixed ccw_init and updated device_cio_free
ca07d6e
36d50ba
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.16.0-2
36d50ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
36d50ba
0bac35f
* Thu Dec 15 2011 Dan Horák <dan[at]danny.cz> 2:1.16.0-1
0bac35f
- rebased to 1.16.0
0bac35f
0425b96
* Tue Aug 16 2011 Dan Horák <dan[at]danny.cz> 2:1.14.0-1
0425b96
- rebased to 1.14.0
0425b96
c46bdda
* Wed Apr 27 2011 Dan Horák <dan[at]danny.cz> 2:1.8.2-32
c46bdda
- updated ccw udev rules
c46bdda
- converted cio_free_device from an upstart job to systemd unit (jstodola)
c46bdda
- mon_statd: switch to using udevadm settle (#688140)
c46bdda
- cpuplugd: Fix incorrect multiplication in rules evaluation (#693365)
c46bdda
- cmsfs-fuse: Delete old file if renaming to an existing file (#690505)
c46bdda
- cmsfs-fuse: Enlarge fsname string (#690506)
c46bdda
- cmsfs-fuse: Unable to use cmsfs-fuse if $HOME is not set (#690514)
c46bdda
- hyptop: Prevent interactive mode on s390 line mode terminals (#690810)
c46bdda
f7e20b2
* Fri Mar 18 2011 Dan Horák <dhorak@redhat.com> 2:1.8.2-31
f7e20b2
- mon_statd: switch to using udevadm settle (#688140)
f7e20b2
- hyptop: Fix man page typo for "current weight" (#684244)
f7e20b2
- fdasd: buffer overflow when writing to read-only device (#688340)
f7e20b2
- cmsfs-fuse: fix read and write errors in text mode (#680465)
f7e20b2
- cmsfs-fuse needs fuse (#631546)
f7e20b2
- dumpconf: Add DELAY_MINUTES description to man page (#676706)
f7e20b2
- iucvterm scriptlet need shadow-utils (#677247)
f7e20b2
- use lower-case in udev rules (#597360)
f7e20b2
- add support for the 1731/02 OSM/OSX network device (#636849)
f7e20b2
- xcec-bridge: fix multicast forwarding (#619504)
f7e20b2
- ziomon: wrong return codes (#623250)
f7e20b2
- qethconf: process devices with non-zero subchannel (#627692)
f7e20b2
- wait for completion of any pending actions affecting device (#631527)
f7e20b2
- add infrastructure code for new features (#631541)
f7e20b2
- hyptop: Show hypervisor performance data on System z (#631541)
f7e20b2
- cmsfs-fuse: support for CMS EDF filesystems via fuse (#631546)
f7e20b2
- lsmem/chmem: Tools to manage memory hotplug (#631561)
f7e20b2
- dumpconf: Prevent re-IPL loop for dump on panic (#633411)
f7e20b2
- ttyrun: run a program if a terminal device is available (#633420)
f7e20b2
- zgetdump/zipl: Add ELF dump support (needed for makedumpfile) (#633437)
f7e20b2
- znetconf: support for OSA CHPID types OSX and OSM (#633534)
f7e20b2
- iucvtty: do not specify z/VM user ID as argument to login -h (#636204)
f7e20b2
- tunedasd: add new option -Q / --query_reserve (#644935)
f7e20b2
- fdasd/dasdfmt: fix format 7 label (#649787)
f7e20b2
- cpuplugd: cmm_pages not set and restored correctly (#658517)
f7e20b2
- lsluns: Fix LUN reporting for SAN volume controller (SVC) (#659828)
f7e20b2
- lsluns: Accept uppercase and lowercase hex digits (#660361)
f7e20b2
- cmsfs: use detected filesystem block size (#651012)
f7e20b2
- device_cio_free: use the /proc/cio_settle interface when waiting for devices
f7e20b2
- libzfcphbaapi library needs kernel-devel during build and thus is limited to s390x
f7e20b2
- libzfcphbaapi library rebased to 2.1 (#633414)
f7e20b2
- new zfcp tools added (#633409)
f7e20b2
0b15456
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.8.2-30
0b15456
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0b15456
0b15456
* Tue Jul 13 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-29
0b15456
- lsluns: uninitialized value on adapter offline (#611795)
0b15456
- zfcpdbf: Fix 'Use of uninitialized value' and output issues (#612622)
0b15456
0b15456
* Wed Jul  7 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-28
0b15456
- fix linking with --no-add-needed
0b15456
0b15456
* Tue Jun 29 2010 Dan Horák <dhorak@redhat.com> 2:1.8.2-27
0b15456
- make znet_cio_free work also when no interface config files exists (#609073)
0b15456
- fix --dates option in zfcpdbf (#609092)
0b15456
0b15456
* Mon Jun 28 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-26
0b15456
- follow symlinks in ziorep (#598574)
0b15456
- do not restrict group names to be alphanumeric in ts-shell (#598641)
0b15456
- znetconf --drive|-d option returning 'unknown driver' for qeth (#601846)
0b15456
- fix stack overwrite in cpuplugd (#601847)
0b15456
- fix cmm_min/max limit checks in cpuplugd (#606366)
0b15456
- set cpu_min to 1 by default in cpuplugd (#606416)
0b15456
- build with -fno-strict-aliasing (#599396)
0b15456
- remove reference to z/VM from the cpi initscript (#601753)
0b15456
- fix return values for the mon_statd initscript (#606805)
0b15456
- ignore backup and similar config files in device_cio_free (#533494)
0b15456
0b15456
* Fri May 28 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-25
0b15456
- fixed device_cio_free command line handling (#595569)
0b15456
0b15456
* Thu May 20 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-24
0b15456
- added a check for the length of the parameters line (#594031)
0b15456
0b15456
* Wed May 19 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-23
0b15456
- make ccw_init compatible with posix shell (#546615)
0b15456
0b15456
* Wed May  5 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-22
0b15456
- scripts can't depend on stuff from /usr (#587364)
0b15456
0b15456
* Mon May  3 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-21
0b15456
- updated patch for the "reinitialize array in lsqeth" issue (#587757)
0b15456
0b15456
* Fri Apr 30 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-20
0b15456
- updated lsdasd man page (#587044)
0b15456
- reinitialize array in lsqeth (#587599)
0b15456
0b15456
* Wed Apr 28 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-19
0b15456
- fixed mismatch between man and -h in chshut (#563625)
0b15456
- use the merged ccw_init script (#533494, #561814)
0b15456
0b15456
* Thu Apr 22 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-18
0b15456
- lsluns utility from the base subpackage requires sg3_utils
0b15456
0b15456
* Wed Apr 21 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-17
0b15456
- updated device_cio_free script (#576015)
0b15456
0b15456
* Wed Mar 31 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-16
0b15456
- updated device_cio_free upstart config file (#578260)
0b15456
- fix multipathing in ziomon (#577318)
0b15456
0b15456
* Mon Mar 29 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-15
0b15456
- remove check for ziorep_config availability (#576579)
0b15456
- install upstart event file into /etc/init (#561339)
0b15456
- device_cio_free updates
0b15456
    - don't use basename/dirname
0b15456
    - correctly parse /etc/ccw.conf (#533494)
0b15456
0b15456
* Mon Mar 22 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-14
0b15456
- don't use memory cgroups in zfcpdump kernel (#575183)
0b15456
- fix df usage in ziomon (#575833)
0b15456
0b15456
* Thu Mar 11 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-13
0b15456
- dropped dependency on redhat-lsb (#542702)
0b15456
0b15456
* Wed Mar 10 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-12
0b15456
- run device_cio_free on startup (#561339)
0b15456
- use hex index for chpidtype table in znetconf (#561056)
0b15456
- handle status during IPL SSCH (#559250)
0b15456
- don't show garbage in vmconvert's progress bar (#567681)
0b15456
- don't print enviroment when there are no devices to wait for (#570763)
0b15456
- fix zfcp dump partition error (#572313)
0b15456
- switched to new initscripts for cpuplugd and fsstatd/procd (#524218, #524477)
0b15456
0b15456
* Tue Feb 16 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-11
0b15456
- moved ccw udev stuff from initscripts to s390utils
0b15456
- updated ccw_init with delay loops and layer2 handling (#561926)
0b15456
0b15456
* Fri Jan 22 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-10.1
0b15456
- really update zfcpconf.sh script from dracut
0b15456
0b15456
* Wed Jan 20 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-10
0b15456
- fixed return codes in ziorep (#556849)
0b15456
- fixed return code in lstape (#556910)
0b15456
- fixed reading the size of /proc/sys/vm/cmm_pages in cpuplugd (#556911)
0b15456
- support new attributes in lsqeth (#556915)
0b15456
0b15456
* Wed Jan 13 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-9
0b15456
- updated device_cio_free script (#533494)
0b15456
- fixed uppercase conversion in lscss (#554768)
0b15456
0b15456
* Fri Jan  8 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-8
0b15456
- updated device_cio_free script (#533494)
0b15456
0b15456
* Fri Jan  8 2010 Dan Horák <dan[at]danny.cz> 2:1.8.2-7
0b15456
- updated device_cio_free script (#533494)
0b15456
0b15456
* Tue Dec 22 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-6.1
0b15456
- fixed return value in cpi initscript (#541389)
0b15456
0b15456
* Tue Dec 22 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-6
0b15456
- fixed return value in cpi initscript (#541389)
0b15456
- updated zfcpconf.sh script from dracut
0b15456
- added device-mapper support into zipl (#546280)
0b15456
- added missing check and print NSS name in case an NSS has been IPLed (#546297)
0b15456
- added device_cio_free script and its symlinks (#533494)
0b15456
- added qualified return codes and further error handling in znetconf (#548487)
0b15456
0b15456
* Fri Nov 13 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-5
0b15456
- added multiple fixes from IBM (#533955, #537142, #537144)
0b15456
0b15456
* Thu Nov 12 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-4
0b15456
- added udev rules and script for dasd initialization (#536966)
0b15456
- added ghosted zfcp and dasd config files, fixes their ownership on the system
0b15456
- fixed upgrade path for libzfcphbaapi-devel subpackage
0b15456
0b15456
* Mon Nov  9 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-3
0b15456
- added files for the CPI feature (#463282)
0b15456
- built lib-zfcp-hbaabi library as vendor lib, switched from -devel (no devel content now) to -docs subpackage (#532707)
0b15456
0b15456
* Fri Oct 30 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-2
0b15456
- install dasd udev rules provided by the s390-tools
0b15456
- added patch for setting readahead value
0b15456
0b15456
* Thu Oct  8 2009 Dan Horák <dan[at]danny.cz> 2:1.8.2-1
0b15456
- added patch for improving mon_statd behaviour
0b15456
- rebased to 1.8.2
0b15456
0b15456
* Fri Oct  2 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-8
0b15456
- really changed ramdisk load address (#526339)
0b15456
- change the required and optional subpackages for the meta package
0b15456
0b15456
* Wed Sep 30 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-7
0b15456
- changed ramdisk load address (#526339)
0b15456
- updated zfcpconf.sh script to new sysfs interface (#526324)
0b15456
- added 1.8.1 fixes from IBM (#525495)
0b15456
0b15456
* Fri Sep 25 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-6
0b15456
- fix issues in lib-zfcp-hbaapi with a patch
0b15456
0b15456
* Thu Sep 24 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-5
0b15456
- drop support for Fedora < 10
0b15456
0b15456
* Thu Sep 24 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-4
0b15456
- fixed string overflow in vtoc_volume_label_init (#525318)
0b15456
0b15456
* Thu Sep  3 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-3
0b15456
- create devel subpackage with some useful headers
0b15456
- preserving timestamps on installed files
0b15456
0b15456
* Wed Aug 26 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-2
0b15456
- Fix byte check for disk encryption check in lsluns (#510032)
0b15456
- Fix cmm configuration file value initialization parser in cpuplugd (#511379)
0b15456
- Check only ZFCP devices in lszfcp (#518669)
0b15456
0b15456
* Mon Jun 29 2009 Dan Horák <dan[at]danny.cz> 2:1.8.1-1
0b15456
- update to 1.8.1
0b15456
- drop upstreamed patches
0b15456
- create iucvterm subpackage
0b15456
- update src_vipa locations patch
0b15456
- install cmsfs tools into /sbin
0b15456
- add post 1.8.1 fixes from IBM
0b15456
0b15456
* Fri Apr 17 2009 Dan Horák <dan[at]danny.cz> 2:1.8.0-6
0b15456
- fix build with newer kernels
0b15456
0b15456
* Wed Mar 25 2009 Dan Horák <dan[at]danny.cz> 2:1.8.0-5
0b15456
- reword the summaries a bit
0b15456
- add downloadable URLs for Sources
0b15456
- fix CFLAGS usage
0b15456
0b15456
* Fri Mar 13 2009 Dan Horák <dan[at]danny.cz> 2:1.8.0-4
0b15456
- next round of clean-up for compliance with Fedora
0b15456
0b15456
* Sun Mar  8 2009 Dan Horák <dan[at]danny.cz> 2:1.8.0-3
0b15456
- little clean-up for compliance with Fedora
0b15456
0b15456
* Fri Dec 12 2008 Hans-Joachim Picht <hans@linux.vnet.ibm.com> 2:1.8.0-2
0b15456
- Adapted package for F9
0b15456
d9a5b0a
* Tue Dec 9 2008 Michael Holzheu <michael.holzheu@de.ibm.com> 2:1.8.0-1
0b15456
- Changed spec file to create sub packages
0b15456
- Updated to zfcphbaapi version 2.0
0b15456
0b15456
* Tue Oct 28 2008 Dan Horák <dan[at]danny.cz> 2:1.7.0-4
0b15456
- disable build-id feature in zipl (#468017)
0b15456
0b15456
* Wed Sep 24 2008 Dan Horák <dan[at]danny.cz> 2:1.7.0-3
0b15456
- drop the mon_tools patch (mon_statd service starts both mon_procd and mon_fsstatd since 1.7.0)
0b15456
0b15456
* Thu Aug 28 2008 Dan Horák <dan[at]danny.cz> 2:1.7.0-2
0b15456
- preserve timestamps on installed files
0b15456
- add proper handling of initscripts
0b15456
- fix permissions for some files
0b15456
0b15456
* Tue Aug 12 2008 Dan Horák <dan[at]danny.cz> 2:1.7.0-1
0b15456
- update to s390-tools 1.7.0, src_vipa 2.0.4 and cmsfs 1.1.8c
0b15456
- rebase or drop RHEL5 patches
0b15456
0b15456
* Fri Jul 25 2008 Dan Horák <dhorak@redhat.com> 2:1.5.3-19.el5
0b15456
- fix use "vmconvert" directly on the vmur device node (#439389)
0b15456
- fix the Linux Raid partition type is not retained when changed through fdasd (#445271)
0b15456
- include missing files into the package (#442584)
0b15456
- Resolves: #439389, #445271, #442584
0b15456
0b15456
* Fri Jul 25 2008 Dan Horák <dhorak@redhat.com> 2:1.5.3-18.el5
0b15456
- split the warnings patch into s390-tools and cmsfs parts
0b15456
- mismatch between installed /etc/zfcp.conf and zfcpconf.sh expected format (#236016)
0b15456
- dbginfo.sh exits before running all tests and drops errors (#243299)
0b15456
- updates for cleanup SCSI dumper code for upstream integration - tool (#253118)
0b15456
- fix segfault when using LD_PRELOAD=/usr/lib64/src_vipa.so (#282751)
0b15456
- add support for timeout parameter in /etc/zipl.conf (#323651)
0b15456
- fixes not listing all the dasds passed as arguments to lsdasd command (#369891)
0b15456
- fix for zipl fail when section is specified and target is not repeated for all sections (#381201)
0b15456
- fix for dasdview -s option fails to ignore the garbage value passed (#412951)
0b15456
- update documentation for zfcpdump (#437477)
0b15456
- update documentation for lsqeth (#455908)
0b15456
- Resolves: #236016, #243299, #253118, #282751, #323651, #369891, #381201, #412951, #437477, #455908
0b15456
0b15456
* Fri Mar 28 2008 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-17.el5
0b15456
- Fix error messages and proc/0 entry are not handled correctly (#438819)
0b15456
0b15456
* Wed Feb 06 2008 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-16.el5
0b15456
- Fixed a build problem with the mon_tools patch (#253029)
0b15456
0b15456
* Mon Feb 04 2008 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-14.el5
0b15456
- Added zfcpdump kernel symlink to dumpconf init script (#430550)
0b15456
0b15456
* Fri Jan 18 2008 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-13.el5
0b15456
- Fix tape390_crypt query shows wrong msg 'Kernel does not support tape encryption' (#269181)
0b15456
0b15456
* Wed Jan 16 2008 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-12.el5
0b15456
- Add System z guest file system size in Monitor APPLDATA (#253029)
0b15456
- Add Dynamic CHPID reconfiguration via SCLP - tools (#253076)
0b15456
- Add z/VM unit-record device driver - tools (#253078)
0b15456
- Cleanup SCSI dumper code for upstream integration - tool (#253118)
0b15456
0b15456
* Tue Jan 08 2008 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-11.el5
0b15456
- Fix installer LVM partitions that show up as "unknown" in fdasd (#250176)
0b15456
- Fixed zfcpconf.sh failure if / and /usr are separated (#279201)
0b15456
0b15456
* Mon Sep 24 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.14
0b15456
- Added missing openssl-devel buildrequires (#281361)
0b15456
0b15456
* Thu Aug 23 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.13
0b15456
- Last updage for -t parameter patch (#202086)
0b15456
0b15456
* Tue Aug 14 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.12
0b15456
- Fix handling of external timer interrupts (#250352)
0b15456
0b15456
* Tue Jul 31 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.11
0b15456
- Update fix for -t parameter for image operations (#202086)
0b15456
0b15456
* Fri Jul 27 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.10
0b15456
- Fixed udev regression from RHEL 4 with /dev/dasd/ (#208189)
0b15456
- Fixed missing -d option for zgetdump (#228094)
0b15456
0b15456
* Thu Jun 28 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.9
0b15456
- Fix optional -t parameter for image operations (#202086)
0b15456
0b15456
* Wed Jun 27 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.8
0b15456
- Fix wrong manpage (#202250)
0b15456
- Fix zfcp devices not showing up after boot (#223569)
0b15456
- Fix help menu of lsqeth showing wrong file (#225159)
0b15456
- Add tape encryption userspace tool (#228080)
0b15456
- Add dump on panic initscript and sysconf (#228094)
0b15456
- Fix a off-by-one error in zfcpdbf (#230527)
0b15456
- Fix zipl aborting with floating point exception if the target specified is a logical volume (#231240)
0b15456
- Fix boot menu use wrong conversion table for input on LPAR (#240399)
0b15456
0b15456
* Mon Jan 22 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.6
0b15456
- Fixed problem with invisible zfcp devices after boot (#223569)
0b15456
0b15456
* Mon Jan 15 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.5
0b15456
- Extended fix for automenu bug (#202086)
0b15456
0b15456
* Thu Jan 11 2007 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.4
0b15456
- Updated dbginfo.sh patch to final fix from IBM (#214805)
0b15456
0b15456
* Wed Nov 29 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.3
0b15456
- Fixed problem with missing debugfs for dbginfo.sh (#214805)
0b15456
0b15456
* Thu Nov 09 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.2
0b15456
- Fixed lszfcp bug related to sysfsutils (#210515)
0b15456
0b15456
* Tue Nov 07 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10.el5.1
0b15456
- Removed wrong additional $ in src_vipa.sh (#213395)
0b15456
- Release and Buildroot specfile fixes
0b15456
0b15456
* Wed Sep 13 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-10
0b15456
- Needed to bump release
0b15456
0b15456
* Tue Sep 12 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-9
0b15456
- Added libsysfs requirement (#201863)
0b15456
- Fixed zipl problem with missing default target for automenus (#202086)
0b15456
0b15456
* Thu Aug 10 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-8
0b15456
- Added missing sysfsutils requirement for lszfcp (#201863)
0b15456
0b15456
* Tue Jul 25 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-7
0b15456
- Included zfcpdbf, dbginfo.sh and the man1 manpages to package (#184812)
0b15456
0b15456
* Tue Jul 18 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-6
0b15456
- Disabled sysfs support due to API changes in sysfs-2.0.0
0b15456
0b15456
* Fri Jul 14 2006 Karsten Hopp <karsten@redhat.de> 2:1.5.3-5
0b15456
- buildrequire net-snmp-devel
0b15456
0b15456
* Fri Jul 14 2006 Jesse Keating <jkeating@redhat.com> - 2:1.5.3-4
0b15456
- rebuild
0b15456
- Add missing br libsysfs-devel, indent, zlib-devel
0b15456
0b15456
* Wed May 17 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.3-1
0b15456
- Made src_vipa build on current toolchain again
0b15456
0b15456
* Tue May 16 2006 Phil Knirsch <pknirsch@redhat.com>
0b15456
- Update to s390-tools-1.5.3 from IBM
0b15456
- Included vmconvert
0b15456
- Dropped obsolete asm patch
0b15456
0b15456
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2:1.5.0-2.1
0b15456
- rebuilt for new gcc4.1 snapshot and glibc changes
0b15456
0b15456
* Mon Jan 30 2006 Phil Knirsch <pknirsch@redhat.com> 2:1.5.0-2
0b15456
- Fixed problem with s390-tools-1.5.0-fdasd-raid.patch
0b15456
- Don't try to remove the non empty _bindir
0b15456
- Some more install cleanups
0b15456
0b15456
* Thu Jan 26 2006 Phil Knirsch <pknirsch@redhat.com>
0b15456
- Fixed some .macro errors in zipl/boot
0b15456
0b15456
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
0b15456
- rebuilt
0b15456
0b15456
* Thu Oct 20 2005 Phil Knirsch <pknirsch@redhat.com> 2:1.5.0-1
0b15456
- Large update from 1.3.2 to 1.5.0
0b15456
- Include osasnmpd and vmcp now by default
0b15456
0b15456
* Tue Sep 06 2005 Phil Knirsch <pknirsch@redhat.com> 2:1.3.2-7
0b15456
- Fixed a couple of code bugs (#143808)
0b15456
0b15456
* Fri Jul 29 2005 Phil Knirsch <pknirsch@redhat.com> 2:1.3.2-6
0b15456
- Corrected filelist for libdir to only include *.so files
0b15456
0b15456
* Tue Jun 21 2005 Phil Knirsch <pknirsch@redhat.com> 2:1.3.2-5
0b15456
- Added src_vipa to s390utils
0b15456
0b15456
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 2:1.3.2-4
0b15456
- bump release and rebuild with gcc 4
0b15456
0b15456
* Tue Oct 26 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.2-3
0b15456
- Put binaries for system recovery in /sbin again.
0b15456
0b15456
* Fri Oct 15 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.2-1
0b15456
- Update to s390-tools-1.3.2
0b15456
- Added qetharp, qethconf, ip_watcher, tunedasd and various other tools to
0b15456
  improve functionality on s390(x).
0b15456
0b15456
* Wed Oct 06 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.1-7
0b15456
- Made the raid patch less verbose (#129656)
0b15456
0b15456
* Thu Sep 16 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.1-6
0b15456
- Added prompt=1 and timeout=15 to automatically generated menu
0b15456
0b15456
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 2:1.3.1-5
0b15456
- install zfcpconf.sh into /sbin
0b15456
0b15456
* Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 2:1.3.1-4 
0b15456
- add zfcpconf.sh to read /etc/zfcp.conf and configure the zfcp
0b15456
  devices
0b15456
0b15456
* Thu Jun 24 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.1-3
0b15456
- Fixed another automenu bug with dumpto and dumptofs (#113204).
0b15456
0b15456
* Thu Jun 17 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.1-2
0b15456
- Fixed automenu patch.
0b15456
- Fixed problem with installation from tape (#121788).
0b15456
0b15456
* Wed Jun 16 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.3.1-1
0b15456
- Updated to latest upstream version s390-tools-1.3.1
0b15456
0b15456
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
0b15456
- rebuilt
0b15456
0b15456
* Mon Jun 07 2004 Karsten Hopp <karsten@redhat.com>
0b15456
- add cmsfs utils
0b15456
0b15456
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
0b15456
- rebuilt
0b15456
0b15456
* Thu Feb 19 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.2.4-4
0b15456
- Fixed rebuilt on fc2.
0b15456
0b15456
* Thu Feb 19 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.2.4-3
0b15456
- Fixed automenu patch, was allocating 1 line to little.
0b15456
0b15456
* Mon Feb 16 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.2.4-2
0b15456
- rebuilt
0b15456
0b15456
* Mon Feb 16 2004 Phil Knirsch <pknirsch@redhat.com> 2:1.2.4-1
0b15456
- Updated to latest developerworks release 1.2.4
0b15456
- Disabled zfcpdump build until i find a way to build it as none-root.
0b15456
0b15456
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 2:1.2.3-3
0b15456
- rebuilt
0b15456
0b15456
* Thu Dec 04 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.3-2
0b15456
- Fixed zfcpdump build.
0b15456
0b15456
* Fri Nov 28 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.3-1
0b15456
- New bugfix release 1.2.3 came out today, updated again.
0b15456
0b15456
* Wed Nov 26 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.2-1
0b15456
- Updated to latest Developerworks version 1.2.2
0b15456
- Cleaned up specfile and patches a little.
0b15456
0b15456
* Wed Nov 12 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.1-4.1
0b15456
- rebuilt
0b15456
0b15456
* Wed Nov 12 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.1-4
0b15456
- Another fix for the new automenu patch. Target was an optional parameter in
0b15456
  old s390utils, provided compatibility behaviour.
0b15456
0b15456
* Mon Oct 20 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.1-3.1
0b15456
- rebuilt
0b15456
0b15456
* Mon Oct 20 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.1-3
0b15456
- Small fix for the new automenu patch, default section didn't work correctly
0b15456
0b15456
* Mon Oct 20 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.1-2.1
0b15456
- rebuilt
0b15456
0b15456
* Fri Oct 17 2003 Phil Knirsch <pknirsch@redhat.com> 2:1.2.1-2
0b15456
- Patched new zipl to be backwards compatible to old multiboot feature.
0b15456
0b15456
* Thu Oct  9 2003 Harald Hoyer <harald@redhat.de> 2:1.2.1-1
0b15456
- second round at updating to 1.2.1
0b15456
0b15456
* Thu Oct 09 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0b15456
- first round at updating to 1.2.1
0b15456
0b15456
* Sat Sep 27 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0b15456
- add /boot/tape0 for .tdf tape boots
0b15456
0b15456
* Fri Jul 25 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0b15456
- apply dasdfmt patch from 1.2.1
0b15456
0b15456
* Fri Jun 20 2003 Phil Knirsch <pknirsch@redhat.com> 1.1.7-1
0b15456
- Updated to latest upstream version 1.1.7
0b15456
0b15456
* Fri May 02 2003 Pete Zaitcev <zaitcev@redhat.com> 1.1.6-7
0b15456
- Fix usage of initialized permissions for bootmap.
0b15456
0b15456
* Tue Apr 29 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0b15456
- add extra tape loader from Pete Zaitcev
0b15456
0b15456
* Mon Apr 14 2003 Karsten Hopp <karsten@redhat.de> 2:1.1.6-5
0b15456
- drop cpint support
0b15456
0b15456
* Mon Mar 24 2003 Karsten Hopp <karsten@redhat.de> 1.1.6-4
0b15456
- use multiboot as default
0b15456
- add option to disable multiboot 
0b15456
0b15456
* Sat Mar 22 2003 Karsten Hopp <karsten@redhat.de> 1.1.6-3
0b15456
- add multiboot patch
0b15456
0b15456
* Mon Mar 10 2003 Karsten Hopp <karsten@redhat.de> 1.1.6-2
0b15456
- added percentage patch (used by anaconda to display progress bars)
0b15456
0b15456
* Thu Feb 27 2003 Phil Knirsch <pknirsch@redhat.com> 1.1.6-1
0b15456
- Updated to newest upstream version 1.1.6
0b15456
0b15456
* Tue Feb 04 2003 Phil Knirsch <pknirsch@redhat.com> 1.1.5-1
0b15456
- Updated to newest upstream version 1.1.5
0b15456
0b15456
* Tue Feb 04 2003 Karsten Hopp <karsten@redhat.de> 1.1.4-3
0b15456
- install libraries in /lib*, not /usr/lib*, they are required
0b15456
  by some tools in /sbin
0b15456
0b15456
* Sun Feb 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
0b15456
- fix filelist to not include debug files
0b15456
0b15456
* Fri Jan 24 2003 Phil Knirsch <pknirsch@redhat.com> 1.1.4-1
0b15456
- Updated to latest upstream version of IBM.
0b15456
- Removed all unecessary patches and updated still needed patches.
0b15456
- Fixed version number. Needed to introduce epoch though.
0b15456
- A little specfile cleanup.
0b15456
- Dropped oco-setver and oco-convert as we don't need them anymore.
0b15456
0b15456
* Wed Jan 22 2003 Phil Knirsch <pknirsch@redhat.com> 20020226-4
0b15456
- Added ExclusiveArch tag.
0b15456
0b15456
* Mon Oct 21 2002 Phil Knirsch <pknirsch@redhat.com> 20020226-3
0b15456
- Removed fdisk -> fdasd symlink. Is now provided by util-linux.
0b15456
- Disabled f5 patch for s390x for now. Enable it later for newer kernels again.
0b15456
0b15456
* Mon May 27 2002 Phil Knirsch <pknirsch@redhat.com>
0b15456
- Fixed dasdview to build on kernels > 2.4.18.
0b15456
0b15456
* Wed Apr 24 2002 Karsten Hopp <karsten@redhat.de>
0b15456
- add IBM 5 patch
0b15456
0b15456
* Tue Jan 29 2002 Karsten Hopp <karsten@redhat.de>
0b15456
- add IBM 4 patch
0b15456
- add profile.d scripts to set correct TERM in 3270 console
0b15456
d9a5b0a
* Tue Dec 18 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- add cpint programs
0b15456
0b15456
* Mon Nov 26 2001 Harald Hoyer <harald@redhat.de> 20011012-6
0b15456
- fix for #56720
0b15456
0b15456
* Thu Nov 15 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- add fdisk - > fdasd symlink
0b15456
d9a5b0a
* Mon Nov 12 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- add IBM patch (11/09/2001) and redo percentage patch
0b15456
0b15456
* Thu Nov 08 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- re-enable DASD if dasdfmt is interrupted with Ctrl-C
0b15456
0b15456
* Mon Nov 05 2001 Harald Hoyer <harald@redhat.de> 20011012-4
0b15456
- added s390-tools-dasdfmt-percentage.patch
0b15456
0b15456
* Mon Oct 22 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- remove postinstall script
0b15456
0b15456
* Mon Oct 15 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- add IBM's s390-utils-2.patch
0b15456
- add console to securetty
0b15456
0b15456
* Mon Oct 01 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- added oco-setkver and oco-convert
0b15456
0b15456
* Fri Aug 31 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- don't write error message in silent mode
0b15456
0b15456
* Thu Aug 23 2001 Harald Hoyer <harald@redhat.de>
0b15456
- added s390-tools-dasdfmt-status.patch
0b15456
0b15456
* Tue Aug 21 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- update to the version from Aug 20
0b15456
0b15456
* Tue Aug 14 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- fix permissions
0b15456
0b15456
* Mon Aug 13 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- rename package to s390utils. s390-tools is no longer needed.
0b15456
0b15456
* Thu Aug 02 2001 Karsten Hopp <karsten@redhat.de>
0b15456
- initial build