mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
kernel-install: Try some more initrd variants in 90-loaderentry.install
On CentOS/Fedora, dracut is configured to write the initrd to /boot/initramfs-$KERNEL_VERSION...img so let's check for that as well if no initrds were supplied.
This commit is contained in:
parent
35c01ec59e
commit
b56920e36c
@ -207,8 +207,18 @@ mkdir -p "${LOADER_ENTRY%/*}" || {
|
||||
have_initrd=yes
|
||||
done
|
||||
|
||||
# Try "initrd", generated by dracut in its kernel-install hook, if no initrds were supplied
|
||||
[ -z "$have_initrd" ] && [ -f "$ENTRY_DIR_ABS/initrd" ] && echo "initrd $ENTRY_DIR/initrd"
|
||||
# Try a few variations that are generated by various initrd generators in their kernel-install hooks if
|
||||
# no initrds were supplied.
|
||||
|
||||
if [ -z "$have_initrd" ] && [ -f "$ENTRY_DIR_ABS/initrd" ]; then
|
||||
echo "initrd $ENTRY_DIR/initrd"
|
||||
have_initrd=yes
|
||||
fi
|
||||
|
||||
if [ -z "$have_initrd" ] && [ -f "$BOOT_ROOT/initramfs-$KERNEL_VERSION.img" ]; then
|
||||
echo "initrd /initramfs-$KERNEL_VERSION.img"
|
||||
have_initrd=yes
|
||||
fi
|
||||
:
|
||||
} >"$LOADER_ENTRY" || {
|
||||
echo "Error: could not create loader entry '$LOADER_ENTRY'." >&2
|
||||
|
Loading…
Reference in New Issue
Block a user