|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
cmdline() {
|
|
|
|
is_zfcp() {
|
|
|
|
local _dev=$1
|
|
|
|
local _devpath=$(cd -P /sys/dev/block/$_dev ; echo $PWD)
|
|
|
|
local _sdev _scsiid _hostno _lun _wwpn _ccw _port_type
|
|
|
|
local _allow_lun_scan _is_npiv
|
|
|
|
|
|
|
|
_allow_lun_scan=$(cat /sys/module/zfcp/parameters/allow_lun_scan)
|
|
|
|
[ "${_devpath#*/sd}" == "$_devpath" ] && return 1
|
|
|
|
_sdev="${_devpath%%/block/*}"
|
|
|
|
[ -e ${_sdev}/fcp_lun ] || return 1
|
|
|
|
_scsiid="${_sdev##*/}"
|
|
|
|
_hostno="${_scsiid%%:*}"
|
|
|
|
[ -d /sys/class/fc_host/host${_hostno} ] || return 1
|
|
|
|
_port_type=$(cat /sys/class/fc_host/host${_hostno}/port_type)
|
|
|
|
case "$_port_type" in
|
|
|
|
NPIV*)
|
|
|
|
_is_npiv=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
_ccw=$(cat ${_sdev}/hba_id)
|
|
|
|
if [ "$_is_npiv" ] && [ "$_allow_lun_scan" = "Y" ] ; then
|
|
|
|
echo "rd.zfcp=${_ccw}"
|
|
|
|
else
|
|
|
|
_lun=$(cat ${_sdev}/fcp_lun)
|
|
|
|
_wwpn=$(cat ${_sdev}/wwpn)
|
|
|
|
echo "rd.zfcp=${_ccw},${_wwpn},${_lun}"
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
[[ $hostonly ]] || [[ $mount_needs ]] && {
|
|
|
|
for_each_host_dev_and_slaves_all is_zfcp
|
|
|
|
} | sort | uniq
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
check() {
|
Allow running on a cross-compiled rootfs
For the shell scripts, new environment variables were introduced.
dracutsysrootdir is the root directory, file existence checks use it.
DRACUT_LDCONFIG can override ldconfig with a different one that works
on the sysroot with foreign binaries.
DRACUT_LDD can override ldd with a different one that works
with foreign binaries.
DRACUT_TESTBIN can override /bin/sh. A cross-compiled sysroot
may use symlinks that are valid only when running on the target
so a real file must be provided that exist in the sysroot.
DRACUT_INSTALL now supports debugging dracut-install in itself
when run by dracut but without debugging the dracut scripts.
E.g. DRACUT_INSTALL="valgrind dracut-install or
DRACUT_INSTALL="dracut-install --debug".
DRACUT_COMPRESS_BZIP2, DRACUT_COMPRESS_LBZIP2, DRACUT_COMPRESS_LZMA,
DRACUT_COMPRESS_XZ, DRACUT_COMPRESS_GZIP, DRACUT_COMPRESS_PIGZ,
DRACUT_COMPRESS_LZOP, DRACUT_COMPRESS_ZSTD, DRACUT_COMPRESS_LZ4,
DRACUT_COMPRESS_CAT: All of the compression utilities may be
overridden, to support the native binaries in non-standard places.
DRACUT_ARCH overrides "uname -m".
SYSTEMD_VERSION overrides "systemd --version".
The dracut-install utility was overhauled to support sysroot via
a new option -r and fixes for clang-analyze. It supports
cross-compiler-ldd from
https://gist.github.com/jerome-pouiller/c403786c1394f53f44a3b61214489e6f
DRACUT_INSTALL_PATH was introduced so dracut-install can work with
a different PATH. In a cross-compiled environment (e.g. Yocto), PATH
points to natively built binaries that are not in the host's /bin,
/usr/bin, etc. dracut-install still needs plain /bin and /usr/bin
that are relative to the cross-compiled sysroot.
The hashmap pool allocate_tile/deallocate_tile code was removed
because clang-analyze showed errors in it. hashmap_copy was removed
because it wasn't used and clang-analyze showed errors in it.
DRACUT_INSTALL_LOG_TARGET and DRACUT_INSTALL_LOG_LEVEL were
introduced so dracut-install can use different settings from
DRACUT_LOG_TARGET and DRACUT_LOG_LEVEL.
Signed-off-by: Böszörményi Zoltán <zboszor@pr.hu>
5 years ago
|
|
|
local _arch=${DRACUT_ARCH:-$(uname -m)}
|
|
|
|
local _ccw
|
|
|
|
[ "$_arch" = "s390" -o "$_arch" = "s390x" ] || return 1
|
|
|
|
require_binaries /usr/lib/udev/collect || return 1
|
|
|
|
|
|
|
|
[[ $hostonly ]] || [[ $mount_needs ]] && {
|
|
|
|
found=0
|
|
|
|
for _ccw in /sys/bus/ccw/devices/*/host* ; do
|
|
|
|
[ -d "$_ccw" ] || continue
|
|
|
|
found=$(($found+1));
|
|
|
|
done
|
|
|
|
[ $found -eq 0 ] && return 255
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
depends() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
install() {
|
|
|
|
inst_multiple /usr/lib/udev/collect
|
|
|
|
inst_hook cmdline 30 "$moddir/parse-zfcp.sh"
|
|
|
|
if [[ $hostonly_cmdline == "yes" ]] ; then
|
|
|
|
local _zfcp
|
|
|
|
|
|
|
|
for _zfcp in $(cmdline) ; do
|
|
|
|
printf "%s\n" "$_zfcp" >> "${initdir}/etc/cmdline.d/94zfcp.conf"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
if [[ $hostonly ]] ; then
|
|
|
|
inst_rules_wildcard 51-zfcp-*.rules
|
|
|
|
inst_rules_wildcard 41-s390x-zfcp-*.rules
|
|
|
|
fi
|
|
|
|
}
|