mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
c909d80825
a/kernel-firmware-20220928_8d19846-noarch-1.txz: Upgraded. a/kernel-generic-5.19.12-x86_64-1.txz: Upgraded. a/kernel-huge-5.19.12-x86_64-1.txz: Upgraded. a/kernel-modules-5.19.12-x86_64-1.txz: Upgraded. d/kernel-headers-5.19.12-x86-1.txz: Upgraded. k/kernel-source-5.19.12-noarch-1.txz: Upgraded. kde/kscreenlocker-5.25.5-x86_64-2.txz: Rebuilt. Subject: [PATCH] Set QSurfaceFormat::ResetNotification. This got lost in frameworks porting from shared KDeclarative code and is important (especially for NVIDIA after suspend+resume). Thanks to marav for the heads-up. kde/plasma-workspace-5.25.5-x86_64-3.txz: Rebuilt. [PATCH] set setInteractiveAuthorizationAllowed on SetPassword call. It is important that the SetPassword call uses interactive authorization, otherwise it will be denied unless the user had been modified beforehand so an authorization was already granted. Thanks to marav for the heads-up. n/gnutls-3.7.8-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. /sbin/probe: Fix duplicated enumeration of mmc storage devices (e.g. SD cards). Thanks to gsl on LQ for the report. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt. /sbin/probe: Fix duplicated enumeration of mmc storage devices (e.g. SD cards). Thanks to gsl on LQ for the report.
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 5.19.12 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
|