slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding 41196c6ff1 Fri Dec 6 22:22:58 UTC 2024
a/kernel-generic-6.12.3-x86_64-1.txz:  Upgraded.
a/mkinitrd-1.4.11-x86_64-53.txz:  Rebuilt.
  /etc/default/geninitrd: added option AUTO_UPDATE_GRUB=true to run update-grub
  after generating the initrd.
  Move the remove-orphaned-initrds section from geninitrd to setup.01.mkinitrd.
  setup.01.mkinitrd: support AUTO_UPDATE_GRUB. Suppress warnings from
  libdevmapper when setup.01.mkinitrd is run within upgradepkg's flock locking.
a/pkgtools-15.1-noarch-20.txz:  Rebuilt.
  pkgtool: set INSIDE_INSTALLER in the Setup section to match the expected
  behavior. Thanks to Mechanikx.
  upgradepkg: allow text produced by install scripts to reach the console in
  --terse mode.
d/kernel-headers-6.12.3-x86-1.txz:  Upgraded.
k/kernel-source-6.12.3-noarch-1.txz:  Upgraded.
l/PyQt-builder-1.17.0-x86_64-1.txz:  Upgraded.
l/sof-firmware-2024.09.2-noarch-1.txz:  Upgraded.
l/xapian-core-1.4.27-x86_64-1.txz:  Upgraded.
x/mesa-24.3.1-x86_64-2.txz:  Rebuilt.
  Revert commit 4c065158927d7bacc5eb1e4f2491b1db93f1dc12:
  [PATCH] dri: revert INVALID modifier special-casing.
  This fixes a crash with AMD RX 470 through 590.
  Thanks to genss for the bug report.
xfce/xfce4-pulseaudio-plugin-0.4.9-x86_64-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2024-12-07 00:44:23 +01:00

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.12.3 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