forked from pool/s390-tools
d2403fb3d3
* s390-tools-01-zipl_helper.device-mapper-add-missed-step-in-logical.patch - Amended the /usr/lib/modules-load.d/pkey.conf (bsc#1233233). Added * pkey_cca * pkey_ep11 * pkey_pckmo OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=230
17 lines
319 B
Bash
17 lines
319 B
Bash
#!/bin/bash
|
|
#
|
|
# setup_cio_ignore
|
|
#
|
|
# Remove the device ids found in /boot/zipl/active_devices.txt
|
|
# from cio_ignore
|
|
#
|
|
|
|
if [ -e /boot/zipl/active_devices.txt ] ; then
|
|
while read dev etc ; do
|
|
[ "$dev" = "#" -o "$dev" = "" ] && continue;
|
|
cio_ignore -r $dev
|
|
done < /boot/zipl/active_devices.txt
|
|
fi
|
|
|
|
exit 0
|