mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
85819314a0
a/etc-15.0-x86_64-15.txz: Rebuilt. /etc/profile: Don't define a $LESS variable, but provide a commented-out example of "-M -R". As far as I can tell, setting $LESS to -M is something that we picked up from SLS's /etc/profile at the very beginning and then kept it because it wasn't causing any problems. Personally, I'll be uncommenting this because it's nice to get the extra output from less provided by -M concerning your place in the file, but we'll leave it up to the end user how to handle this. Thanks to krown, marav, LockyWolf, and drgibbon. a/kernel-generic-5.14.0-x86_64-1.txz: Upgraded. a/kernel-huge-5.14.0-x86_64-1.txz: Upgraded. a/kernel-modules-5.14.0-x86_64-1.txz: Upgraded. d/kernel-headers-5.14.0-x86-1.txz: Upgraded. k/kernel-source-5.14.0-noarch-1.txz: Upgraded. l/libcap-2.55-x86_64-1.txz: Upgraded. n/gnupg2-2.2.30-x86_64-1.txz: Upgraded. n/proftpd-1.3.7c-x86_64-1.txz: Upgraded. xap/xsnow-3.3.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 5.14 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
|