mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
ba558b6ff6
a/btrfs-progs-6.9.2-x86_64-1.txz: Upgraded. a/grub-2.12-x86_64-10.txz: Rebuilt. Fix initrd path when including microcode. Hopefully we're about out of corner cases now. Thanks to kaott, with honorable mention to gwhl. a/kernel-firmware-20240622_cea56a5-noarch-1.txz: Upgraded. a/kernel-generic-6.9.7-x86_64-1.txz: Upgraded. a/kernel-huge-6.9.7-x86_64-1.txz: Upgraded. a/kernel-modules-6.9.7-x86_64-1.txz: Upgraded. ap/lxc-6.0.1-x86_64-1.txz: Upgraded. Add a few more packages to the lxc-slackware.in template: ca-certificates, glibc-zoneinfo, libksba, openssl, perl. Thanks to Ricardson Williams. d/kernel-headers-6.9.7-x86-1.txz: Upgraded. d/python-pip-24.1.1-x86_64-1.txz: Upgraded. k/kernel-source-6.9.7-noarch-1.txz: Upgraded. kde/krita-5.2.3-x86_64-1.txz: Upgraded. l/harfbuzz-9.0.0-x86_64-1.txz: Upgraded. l/pipewire-1.2.0-x86_64-1.txz: Upgraded. n/krb5-1.21.3-x86_64-1.txz: Upgraded. This update fixes security issues: Fix vulnerabilities in GSS message token handling. Fix a potential bad pointer free in krb5_cccol_have_contents(). Fix a memory leak in the macOS ccache type. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-37370 https://www.cve.org/CVERecord?id=CVE-2024-37371 (* Security fix *) x/libinput-1.26.1-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
#!/bin/sh
|
|
TMP=/var/log/setup/tmp
|
|
if [ ! -d $TMP ]; then
|
|
mkdir -p $TMP
|
|
fi
|
|
add() {
|
|
for package in $* ; do
|
|
echo "$package: ADD" >> $TMP/SeTnewtag
|
|
done
|
|
}
|
|
skip() {
|
|
for package in $* ; do
|
|
echo "$package: SKP" >> $TMP/SeTnewtag
|
|
done
|
|
}
|
|
#item ####description ###on off ###
|
|
cat /dev/null > $TMP/SeTnewtag
|
|
dialog --title "SELECTING SOFTWARE FROM SERIES K (Linux kernel source)" \
|
|
--checklist "Please confirm the packages you wish to install \
|
|
from series K. Use the UP/DOWN keys to scroll through the list, and \
|
|
the SPACE key to deselect any items you don't want to install. \
|
|
Press ENTER when you are \
|
|
done." 11 70 1 \
|
|
"kernel-source" "Linux 6.9.7 kernel source" "on" \
|
|
2> $TMP/SeTpkgs
|
|
if [ $? = 1 -o $? = 255 ]; then
|
|
rm -f $TMP/SeTpkgs
|
|
> $TMP/SeTnewtag
|
|
for pkg in \
|
|
kernel-source \
|
|
; do
|
|
echo "$pkg: SKP" >> $TMP/SeTnewtag
|
|
done
|
|
exit
|
|
fi
|
|
cat /dev/null > $TMP/SeTnewtag
|
|
for PACKAGE in \
|
|
kernel-source \
|
|
; do
|
|
if grep "\(^\| \)$PACKAGE\( \|$\)" $TMP/SeTpkgs 1> /dev/null 2> /dev/null ; then
|
|
echo "$PACKAGE: ADD" >> $TMP/SeTnewtag
|
|
else
|
|
echo "$PACKAGE: SKP" >> $TMP/SeTnewtag
|
|
fi
|
|
done
|
|
rm -f $TMP/SeTpkgs
|