mirror of
git://slackware.nl/current.git
synced 2025-02-05 20:46:11 +01:00
2a236157ac
a/grub-2.12-x86_64-6.txz: Rebuilt. Added update-grub script. Thanks to LuckyCyborg. Also add grub-update symlink. Disable the submenus. Thanks to LuckyCyborg. Also find initrd-${tag}-${version}.gz and initrd-${tag}.gz. Thanks to gwhl. Support kernel symlinks/files named vmlinu[xz]-generic, vmlinu[xz]-custom, and vmlinu[xz]-huge. Thanks to Petri Kaukasoina. Enabled os-prober again. It works here, and (at least with lilo) we've always been friendly to dual-booting. It's easy to disable if you don't like it. Sorry to LuckyCyborg. ;-) d/parallel-20240622-noarch-1.txz: Upgraded. kde/qca-2.3.9-x86_64-1.txz: Upgraded. l/imagemagick-7.1.1_34-x86_64-1.txz: Upgraded. n/NetworkManager-1.48.2-x86_64-1.txz: Upgraded. n/ntp-4.2.8p18-x86_64-4.txz: Rebuilt. In ntp.conf, don't use direct logging to /var/log/ntp. Instead use the syslog facility to avoid having to restart ntpd when the logs are rotated. We'll still rotate /var/log/ntp if we see it, though. Thanks to Petri Kaukasoina. xap/NetworkManager-openvpn-1.12.0-x86_64-1.txz: Upgraded.
10 lines
436 B
Bash
10 lines
436 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=Slackware --recheck
|
|
# or this:
|
|
# grub-install --target=i386-pc --recheck /dev/sdX
|
|
|
|
set -e
|
|
exec grub-mkconfig -o /boot/grub/grub.cfg "$@"
|