Dan Horák
a483890884
- update ccw udev rules
2021-11-26 16:49:21 +01:00
Dan Horák
78ef6e86e5
fix cpictl permissions ( #2024102 )
2021-11-18 12:06:45 +00:00
Dan Horák
b385215ded
- rebased to 2.19.0
...
- cmsfs-fuse Requires glibc-gconv-extra (#2022652 )
2021-11-16 15:38:15 +00:00
Dan Horák
c69c48c992
- move vmcp to core ( #1931287 )
2021-10-21 13:13:40 +02:00
Dan Horák
ea8f5ea852
- rebased to 2.18.0
2021-10-05 10:10:21 +00:00
Fedora Release Engineering
083020797b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
...
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-23 16:57:00 +00:00
Dan Horák
a8e761756e
drop trailing slash when listing dirs with %dir in %files
2021-07-15 10:48:13 +02:00
Dan Horák
287377b414
base should own the /usr/lib64/zkey directory
2021-07-15 10:46:57 +02:00
Dan Horák
c1e8b3a309
workaround a build issue with new ld (binutils >= 2.36)
...
The new ld doesn't ignore an unrecorgnized -no-pie option.
Related: https://github.com/ibm-s390-linux/s390-tools/pull/106
2021-07-14 14:26:27 +02:00
Dan Horák
0419550a2a
remove a comment
2021-07-08 11:44:55 +02:00
Dan Horák
9e8e130a7c
use URLs for RHEL/Fedora specific scripts and configs
2021-07-08 11:42:31 +02:00
Dan Horák
2a913049ee
modernize ccw udev rules
2021-07-08 11:38:29 +02:00
Dan Horák
ce7722eab4
- rebased to 2.17.0
2021-07-07 17:49:40 +00:00
Dan Horák
e4da637a53
zfcpconf: set exit code explicitly ( #1977434 )
2021-06-30 11:36:03 +02:00
Dan Horák
b2e74b0a3e
mk-s390image script requires file
2021-06-22 21:31:28 +02:00
Dan Horák
2bf7d95c95
- drop obsolete setting from device_cio_free.service
2021-06-17 10:00:57 +02:00
Dan Horák
02409651fa
- drop superfluous Require from s390utils-base
2021-03-01 10:54:27 +00:00
Dan Horák
3d1d949272
- rebased to 2.16.0
2021-02-24 18:05:21 +00:00
Fedora Release Engineering
d792b32be1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
...
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-27 19:51:30 +00:00
Tom Stellard
7a34f7d689
Add BuildRequires: make
...
https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot
2021-01-08 21:02:58 +00:00
Dan Horák
6ce1f4d14f
- move lszdev to core
2021-01-05 16:28:32 +00:00
Dan Horák
1409803b15
- move fdasd to core
2021-01-04 16:53:36 +01:00
Dan Horák
a823de10da
move cio_ignore man page to core too
2020-11-03 16:33:34 +01:00
Petr Šabata
ab939b3c36
Fix the development package dependency by adding epoch
...
Signed-off-by: Petr Šabata <contyk@redhat.com>
2020-10-29 11:15:12 +01:00
Dan Horák
0450181b8e
- rebased to 2.15.1
2020-10-29 07:38:46 +00:00
Dan Horák
4a5ecf837b
- move mk-s390image to /usr/bin
2020-10-28 08:04:41 +00:00
Dan Horák
1cc3998852
- rebased to 2.15.0
2020-10-27 10:17:25 +00:00
Dan Horák
2ff6f78332
move cio_ignore to core
...
Seems dracut needs cio_ignore when creating initrd during kernel installation.
2020-10-26 11:16:40 +01:00
Dan Horák
1b35631849
- update scripts for https://fedoraproject.org/wiki/Changes/NetworkManager_keyfile_instead_of_ifcfg_rh
2020-10-07 15:09:59 +02:00
Dan Horák
2f9ebbc0ab
bump release
2020-09-21 17:38:52 +02:00
Dan Horák
83bfc0e7d7
- rebuilt for net-snmp 5.9
2020-09-21 17:38:11 +02:00
Dan Horák
cf1344b04d
fix date in changelog
2020-08-26 10:50:18 +02:00
Dan Horák
a895d0c8be
- add support for auto LUN scan to zfcpconf.sh ( #1552697 )
2020-08-26 10:49:18 +02:00
Dan Horák
a9bf2dafeb
- rebased to 2.14.0
2020-08-25 09:44:19 +02:00
Fedora Release Engineering
1f19dda30e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
...
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-29 10:09:21 +00:00
Javier Martinez Canillas
6f6a4deece
- add a default entry in zipl.conf if there isn't one present ( #1698363 )
...
When a kernel-debug package is installed, it should only be set as default
if DEFAULTDEBUG=yes is set in /etc/sysconfig/kernel. But currently there's
no default field set in /etc/zipl.conf so the implicit order used to sort
boot entries is used.
The debug kernels contains a +debug suffix which makes them be sorted with
more precedence than non-debug kernels by the RPM sorting algorithm:
rpm --eval '%{lua: print(rpm.vercmp("4.18.0-193.el8.s390x+debug", "4.18.0-193.el8.s390x"))}'
1
So using the implicit order when a debug kernel is installed and a default
is not set leads to a wrong behavior.
The zipl kernel-install script attempts to set a default entry if has to,
but only if one is present in the zipl.conf file. Take also into account
the case when there isn't one to avoid using the implicit sorting and not
cover these corner cases like the one with the debug kernel.
Resolves: rhbz#1698363
2020-07-23 09:32:32 +02:00
Dan Horák
b8f75bde3c
move more stuff to core
...
- move {dasd,zfcp}.conf, the installer writes them
- move *_cio_free symlinks, used in initrd
- move dasdinfo, used in initrd
2020-06-11 13:22:27 +02:00
Dan Horák
f9a139cce4
move man pages to core
2020-06-11 11:19:11 +02:00
Dan Horák
383f5e27aa
update some texts
2020-06-11 11:15:55 +02:00
Jakub Čajka
0aa4b528e1
Clean up systemd post script macros
2020-06-11 11:11:36 +02:00
Jakub Čajka
365ca29316
- split off core package with basic functionalities and reduced deps from base sub-package
2020-06-11 11:11:36 +02:00
Dan Horák
e477a92045
fix build with rpm 4.16
2020-06-04 09:44:27 +00:00
Dan Horák
6b21143baa
- avoid dependency on network-scripts (part of PR #4 )
2020-06-01 10:23:32 +02:00
Jakub Čajka
5e82789fe7
- avoid dependency on network-scrips
2020-06-01 10:21:28 +02:00
Dan Horák
1ec03967cb
add missing BR
2020-05-11 07:22:29 -04:00
Dan Horák
974303a2f3
- rebased to 2.13.0
2020-05-11 06:46:04 -04:00
Dan Horák
58aa25016f
- rebuilt for json-c soname bump
2020-04-22 18:56:19 +02:00
Fedora Release Engineering
78962171af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
...
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-30 22:43:22 +00:00
Dan Horák
6e980e4fa1
- fix service order after switching to real root file system ( #1790496 , #1790790 )
2020-01-14 13:20:20 +01:00
Dan Horák
920a9af392
- rebased to 2.12.0
2020-01-06 06:22:01 -05:00