1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-01-29 08:36:40 +01:00
slackware-current/source/a/mkinitrd/geninitrd.default
Patrick J Volkerding 0a6c6a646b Mon Nov 25 21:19:23 UTC 2024
a/mkinitrd-1.4.11-x86_64-50.txz:  Rebuilt.
  geninitrd: If the kernel to use was provided on the command line or with
  a predefined KERNEL variable, make sure that the KERNEL variable is set to
  that value before handing off control to a custom script.
  Thanks to LuckyCyborg for the bug report.
d/git-2.47.1-x86_64-1.txz:  Upgraded.
d/re2c-4.0.1-x86_64-1.txz:  Upgraded.
l/libqalculate-5.4.0-x86_64-1.txz:  Upgraded.
l/netpbm-11.08.02-x86_64-1.txz:  Upgraded.
n/gnupg2-2.4.7-x86_64-1.txz:  Upgraded.
n/wget2-2.2.0-x86_64-1.txz:  Upgraded.
  Shared library .so-version bump.
extra/bash-completion/bash-completion-2.15.0-noarch-1.txz:  Upgraded.
2024-11-25 23:02:40 +01:00

49 lines
1.9 KiB
Text

# Default options for /usr/sbin/geninitrd:
# Would you rather run a custom script instead of /usr/sbin/geninitrd?
# If so, set it below and it will be used instead:
#GENINITRD_OVERRIDE_SCRIPT=/usr/local/sbin/geninitrd-custom
# This variable defines the kernel that the initrd should be made for.
# However, if a kernel is provided on the command line:
# geninitrd /boot/vmlinuz-6.12.1
# Then this will be used instead.
# The value of KERNEL is also not replaced if it was already defined:
# KERNEL=/boot/vmlinuz-6.12.1 geninitrd
# If there's no kernel defined by the command line or by the KERNEL
# variable, then as a last resort we'll use the newest kernel we find
# in /boot.
KERNEL=/boot/vmlinuz-generic
# In addition to the initrd with a name like initrd-6.11.6.img,
# should we make a compatibility symlink such as initrd-generic.img?
# GRUB doesn't require this, but lilo and elilo might.
GENINITRD_NAMED_SYMLINK=true
# In addition to the initrd with a name like initrd-6.11.6.img,
# should we make a compatibility symlink named initrd.gz?
# GRUB doesn't require this, but lilo and elilo might.
GENINITRD_INITRD_GZ_SYMLINK=true
# Which initrd generating tool should we use?
# The supported options are mkinitrd_command_generator.sh,
# mkinitrd (falls back to mkinitrd_command_generator.sh if
# there is no /etc/mkinitrd.conf), or dracut.
GENERATOR=mkinitrd
# If we are using dracut, we'll use these options:
DRACUT_OPTS="--force --hostonly"
# Should we allow the kernel install script to automatically
# generate an initrd?
AUTOGENERATE_INITRD=true
# Should we automatically remove "orphaned" initrds, i.e. any initrd that
# does not have a matching kernel version in /boot?
AUTO_REMOVE_ORPHANED_INITRDS=true
# Should we display the dialog splash screen?
GENINITRD_DIALOG=false
# Should we display the output from the generator and remove-orphaned-initrds?
GENINITRD_COMMAND_OUTPUT=true