slackware-current/source/k/doinst.sh/doinst.sh-kernel
Patrick J Volkerding 5bd6cc66e3 Fri Dec 13 22:59:13 UTC 2024
a/mkinitrd-1.4.11-x86_64-57.txz:  Rebuilt.
  setup.01.mkinitrd: improve sanity checking on the kernel file/symlink.
  Thanks to Mechanikx.
a/pkgtools-15.1-noarch-22.txz:  Rebuilt.
  make-kernel-backup: improve sanity checking on the kernel file/symlink.
  Thanks to Mechanikx.
l/libjpeg-turbo-3.1.0-x86_64-1.txz:  Upgraded.
l/mozjs128-128.5.2esr-x86_64-1.txz:  Upgraded.
l/pcaudiolib-1.3-x86_64-1.txz:  Upgraded.
l/python-versioneer-0.29-x86_64-1.txz:  Added.
xap/mozilla-firefox-128.5.2esr-x86_64-1.txz:  Upgraded.
  This is a bugfix release.
  For more information, see:
    https://www.mozilla.org/en-US/firefox/128.5.2/releasenotes/
xap/xsnow-3.8.1-x86_64-1.txz:  Upgraded.
2024-12-14 01:04:00 +01:00

15 lines
651 B
Text

# Only run this if we aren't in the installer.
# We'll do these things after the install.
# First we'll check for an old version of setup.01.mkinitrd. If we find one,
# let's skip all this. We could be upgrading from 15.0...
if [ -r var/lib/pkgtools/setup/setup.01.mkinitrd ]; then
if ! grep -wq vmlinuz-generic-smp var/lib/pkgtools/setup/setup.01.mkinitrd 2> /dev/null ; then
if [ -z "$INSIDE_INSTALLER" ]; then
# Generate the initrd and remove orphaned initrds.
# Options (including disabling this) may be found in /etc/default/geninitrd.
if [ -x usr/sbin/geninitrd ]; then
usr/sbin/geninitrd
fi
fi
fi
fi