slackware-current/slackware64/k/maketag
Patrick J Volkerding ee5ad0d97a Sat Aug 26 21:01:45 UTC 2023
a/coreutils-9.3-x86_64-2.txz:  Rebuilt.
  Don't support AVX2 instructions for wc. Since it's possible to enable a
  kernel option that causes the kernel to advertise AVX2 as available, but
  leads to an illegal instruction if there's an attempt to actually use
  AVX2 when old microcode is in use, this isn't reliable. Furthermore, wc
  is used by the pkgtools and this sort of failure could lead to corruption
  of the filesystem and/or package database. So, we'll disable this to be on
  the safe side. Thanks to lancsuk for noticing this issue.
a/kernel-generic-6.1.48-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.1.48-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.1.48-x86_64-1.txz:  Upgraded.
d/kernel-headers-6.1.48-x86-1.txz:  Upgraded.
k/kernel-source-6.1.48-noarch-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-08-26 23:33:08 +02: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.1.48 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