mirror of
git://slackware.nl/current.git
synced 2025-02-05 20:46:11 +01:00
![Patrick J Volkerding](/assets/img/avatar_default.png)
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.
77 lines
3.3 KiB
Bash
77 lines
3.3 KiB
Bash
#!/bin/bash
|
|
|
|
# Copyright 2019, 2024 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# This is a simple script to generate an initial ramdisk when a new
|
|
# kernel is installed. If the kernel is vmlinuz-6.11.5, it will generate
|
|
# initrd-6.11.5.img. If there's a symlink pointing at the kernel (for
|
|
# example, vmlinuz-generic), it will also make a matching initrd-generic.img
|
|
# symlink. Finally, it also supports a plain initrd.gz symlink to the initrd,
|
|
# which might still be needed by some old setups.
|
|
|
|
# To generate an initrd automatically, just run "geninitrd".
|
|
# if KERNEL is defined and points to a kernel, we'll use that.
|
|
# Otherwise, if $1 is defined and points to a kernel, we'll use that.
|
|
# Example: geninitrd /boot/vmlinuz-6.11.6
|
|
# If none of these are true, we'll use the newest kernel we find in /boot.
|
|
|
|
# If you use an encrypted root, you may need an appropriate /etc/mkinitrd.conf
|
|
# (if you will be setting GENERATOR=mkinitrd in /etc/default/geninitrd), or you
|
|
# could try using GENERATOR=dracut.
|
|
|
|
cd $(dirname $0)/../..
|
|
|
|
# Load default options:
|
|
if [ -r etc/default/geninitrd ]; then
|
|
. etc/default/geninitrd
|
|
fi
|
|
|
|
# If a kernel was provided on the command line, this always overrides any
|
|
# previous choice:
|
|
if [ ! -z "$1" ]; then
|
|
export KERNEL_OVERRIDE=$1
|
|
fi
|
|
|
|
# In case you cannot make this script do exactly what you require, you're
|
|
# welcome to create your own script to be run instead. Define this in
|
|
# /etc/default/geninitrd (GENINITRD_OVERRIDE_SCRIPT).
|
|
if [ ! -z $GENINITRD_OVERRIDE_SCRIPT ]; then
|
|
# If this is an absolute pathname, make it relative to /:
|
|
RELATIVE_OVERRIDE_SCRIPT=$GENINITRD_OVERRIDE_SCRIPT
|
|
if [ "$(echo $RELATIVE_OVERRIDE_SCRIPT | cut -b 1)" = "/" ]; then
|
|
RELATIVE_OVERRIDE_SCRIPT="$(echo $RELATIVE_OVERRIDE_SCRIPT | cut -b 2-)"
|
|
fi
|
|
fi
|
|
if [ -x "$RELATIVE_OVERRIDE_SCRIPT" ]; then
|
|
chroot . $GENINITRD_OVERRIDE_SCRIPT
|
|
else # we will run the default handler from the setup scripts:
|
|
chroot . /var/lib/pkgtools/setup/setup.01.mkinitrd
|
|
fi
|
|
|
|
# If enabled in /etc/default/geninitrd, remove any orphaned initrds
|
|
# after generating the initrd:
|
|
if grep -wq "^AUTO_REMOVE_ORPHANED_INITRDS=true$" etc/default/geninitrd ; then
|
|
if [ "$GENINITRD_COMMAND_OUTPUT" = "true" ]; then
|
|
chroot . /usr/sbin/remove-orphaned-initrds
|
|
else
|
|
chroot . /usr/sbin/remove-orphaned-initrds 1> /dev/null 2> /dev/null
|
|
fi
|
|
fi
|