1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-02-05 20:46:11 +01:00
slackware-current/source/a/mkinitrd/geninitrd.default
Patrick J Volkerding 62d2eb317f Sun Nov 24 23:09:54 UTC 2024
a/mkinitrd-1.4.11-x86_64-49.txz:  Rebuilt.
  setup.01.mkinitrd: removed KERNEL_SYMLINK option.
  If a kernel is provided to geninitrd on the command line ($1), this will
  always be the kernel used.
  Thanks to Mechanikx.
  Removed GENINITRD_SILENT option.
  init: cap the size of /run to 25% of the system RAM since the previous
  default of 32M is way too small for many purposes. I have seen other Linux
  systems cap this at half the system RAM, but that seems to me a bit much.
  /etc/default/geninitrd:
  Added GENINITRD_OVERRIDE_SCRIPT which can be set to anything you like.
  Support for hardcoded {/usr/local/sbin,/opt/sbin}/geninitrd was removed.
  Added GENINITRD_DIALOG (do we want the dialog --infobox output?)
  Added GENINITRD_COMMAND_OUTPUT (do we want to see command output?)
a/sysvinit-scripts-15.1-noarch-23.txz:  Rebuilt.
  rc.S: cap the size of /run to 25% of the system RAM.
l/gtk4-4.16.7-x86_64-1.txz:  Upgraded.
l/vte-0.78.2-x86_64-2.txz:  Rebuilt.
n/traceroute-2.1.6-x86_64-1.txz:  Upgraded.
xfce/xfce4-xkb-plugin-0.8.3-x86_64-1.txz:  Added.
  Thanks to vladimir_vist for the suggestion,
  and Robby Workman for the build script.
2024-11-25 00:29:25 +01:00

43 lines
1.6 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.
# If it is not defined, then we use $1 that was given to geninitrd.
# 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