slackware-current/source/a/grub/update-grub
Patrick J Volkerding a121f1edbb Wed Jun 26 20:06:09 UTC 2024
a/grub-2.12-x86_64-8.txz:  Rebuilt.
  Sort the kernel menu entries newest first. Thanks to Daedra.
  Add the GRUB_DISABLE_KERNEL_SYMLINKS variable to grub-mkconfig.in.
  Thanks to LuckyCyborg.
  Fix loading initrd.gz when /boot is on a separate partition.
  Thanks to Brent Earl.
ap/lxc-6.0.0a-x86_64-1.txz:  Upgraded.
  Added packages to lxc-slackware.in that are needed to support gnupg2:
  icu4c, libassuan, libgcrypt, libgpg-error, npth, sqlite.
  Thanks to Ricardson Williams.
d/binutils-2.42-x86_64-2.txz:  Rebuilt.
  Rebuild with --sysconfdir=/etc to get rid of /usr/etc directory.
  Thanks to mid-kid.
kde/kdeconnect-kde-23.08.5-x86_64-2.txz:  Rebuilt.
  Recompiled against pulseaudio-qt-1.5.0.
kde/pulseaudio-qt-1.5.0-x86_64-1.txz:  Upgraded.
  Shared library .so-version bump.
l/protobuf-27.2-x86_64-1.txz:  Upgraded.
l/python-importlib_metadata-8.0.0-x86_64-1.txz:  Upgraded.
l/wireplumber-0.5.4-x86_64-1.txz:  Upgraded.
x/libdrm-2.4.122-x86_64-1.txz:  Upgraded.
extra/xv/xv-5.2.0-x86_64-1.txz:  Upgraded.
2024-06-26 22:30:05 +02:00

10 lines
431 B
Bash

#!/bin/sh
# This is a simple script to update grub from the configuration file.
# Please note that after upgrading to a new grub version, you should
# first use "grub-install" to reinstall the bootloader, similar to this:
# grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB --recheck
# or this:
# grub-install --target=i386-pc --recheck /dev/sdX
set -e
exec grub-mkconfig -o /boot/grub/grub.cfg "$@"