|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
install() {
|
|
|
|
local _i
|
|
|
|
|
|
|
|
# Fixme: would be nice if we didn't have to guess, which rules to grab....
|
|
|
|
# ultimately, /lib/initramfs/rules.d or somesuch which includes links/copies
|
|
|
|
# of the rules we want so that we just copy those in would be best
|
|
|
|
inst_multiple udevadm cat uname blkid
|
|
|
|
inst_dir /etc/udev
|
|
|
|
inst_multiple -o /etc/udev/udev.conf
|
|
|
|
|
|
|
|
[ -d ${initdir}/$systemdutildir ] || mkdir -p ${initdir}/$systemdutildir
|
|
|
|
for _i in ${systemdutildir}/systemd-udevd ${udevdir}/udevd /sbin/udevd; do
|
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
|
|
|
[ -x "$dracutsysrootdir$_i" ] || continue
|
|
|
|
inst "$_i"
|
|
|
|
|
|
|
|
if ! [[ -f ${initdir}${systemdutildir}/systemd-udevd ]]; then
|
|
|
|
ln -fs "$_i" ${initdir}${systemdutildir}/systemd-udevd
|
|
|
|
fi
|
|
|
|
break
|
|
|
|
done
|
|
|
|
if ! [[ -e ${initdir}${systemdutildir}/systemd-udevd ]]; then
|
|
|
|
derror "Cannot find [systemd-]udevd binary!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
inst_rules \
|
|
|
|
40-redhat.rules \
|
|
|
|
50-firmware.rules \
|
|
|
|
50-udev.rules \
|
|
|
|
50-udev-default.rules \
|
|
|
|
55-scsi-sg3_id.rules \
|
|
|
|
58-scsi-sg3_symlink.rules \
|
|
|
|
59-scsi-sg3_utils.rules \
|
|
|
|
60-block.rules \
|
|
|
|
60-pcmcia.rules \
|
|
|
|
60-persistent-storage.rules \
|
|
|
|
61-persistent-storage-edd.rules \
|
|
|
|
70-uaccess.rules \
|
|
|
|
71-seat.rules \
|
|
|
|
73-seat-late.rules \
|
|
|
|
75-net-description.rules \
|
|
|
|
80-drivers.rules 95-udev-late.rules \
|
|
|
|
80-net-name-slot.rules\
|
|
|
|
80-net-setup-link.rules \
|
|
|
|
95-late.rules \
|
|
|
|
"$moddir/59-persistent-storage.rules" \
|
|
|
|
"$moddir/61-persistent-storage.rules" \
|
|
|
|
${NULL}
|
|
|
|
|
|
|
|
prepare_udev_rules 59-persistent-storage.rules 61-persistent-storage.rules
|
|
|
|
# debian udev rules
|
|
|
|
inst_rules 91-permissions.rules
|
|
|
|
# eudev rules
|
|
|
|
inst_rules 80-drivers-modprobe.rules
|
|
|
|
# legacy persistent network device name rules
|
|
|
|
[[ $hostonly ]] && inst_rules 70-persistent-net.rules
|
|
|
|
|
|
|
|
if dracut_module_included "systemd"; then
|
|
|
|
inst_multiple -o ${systemdutildir}/network/*.link
|
|
|
|
[[ $hostonly ]] && inst_multiple -H -o /etc/systemd/network/*.link
|
|
|
|
fi
|
|
|
|
|
|
|
|
{
|
|
|
|
for i in cdrom tape dialout floppy; do
|
|
|
|
if ! grep -q "^$i:" "$initdir/etc/group" 2>/dev/null; then
|
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
|
|
|
if ! grep "^$i:" $dracutsysrootdir/etc/group 2>/dev/null; then
|
|
|
|
case $i in
|
|
|
|
cdrom) echo "$i:x:11:";;
|
|
|
|
dialout) echo "$i:x:18:";;
|
|
|
|
floppy) echo "$i:x:19:";;
|
|
|
|
tape) echo "$i:x:33:";;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
} >> "$initdir/etc/group"
|
|
|
|
|
|
|
|
inst_multiple -o \
|
|
|
|
${udevdir}/ata_id \
|
|
|
|
${udevdir}/cdrom_id \
|
|
|
|
${udevdir}/create_floppy_devices \
|
|
|
|
${udevdir}/edd_id \
|
|
|
|
${udevdir}/firmware.sh \
|
|
|
|
${udevdir}/firmware \
|
|
|
|
${udevdir}/firmware.agent \
|
|
|
|
${udevdir}/hotplug.functions \
|
|
|
|
${udevdir}/fw_unit_symlinks.sh \
|
|
|
|
${udevdir}/hid2hci \
|
|
|
|
${udevdir}/path_id \
|
|
|
|
${udevdir}/input_id \
|
|
|
|
${udevdir}/scsi_id \
|
|
|
|
${udevdir}/usb_id \
|
|
|
|
${udevdir}/pcmcia-socket-startup \
|
|
|
|
${udevdir}/pcmcia-check-broken-cis
|
|
|
|
|
|
|
|
inst_multiple -o /etc/pcmcia/config.opts
|
|
|
|
|
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
|
|
|
[ -f $dracutsysrootdir/etc/arch-release ] && \
|
|
|
|
inst_script "$moddir/load-modules.sh" /lib/udev/load-modules.sh
|
|
|
|
|
|
|
|
inst_libdir_file "libnss_files*"
|
|
|
|
|
|
|
|
}
|
|
|
|
|