summaryrefslogtreecommitdiffstats
path: root/source/k/build-all-kernels.sh
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-12-11 22:18:13 +0000
committer Eric Hameleers <alien@slackware.com>2023-12-12 00:13:38 +0100
commitb04af892853e58c426e27bff4f0acbcd3d524f06 (patch)
treee9533c5926d3af95babd530c517d5940d6efe9b7 /source/k/build-all-kernels.sh
parent523624d48084b79e858d4b62b68dd5335ad70232 (diff)
downloadcurrent-b04af892853e58c426e27bff4f0acbcd3d524f06.tar.gz
current-b04af892853e58c426e27bff4f0acbcd3d524f06.tar.xz
Mon Dec 11 22:18:13 UTC 202320231211221813
We've gone ahead and moved the 6.6 kernel into the main tree. As previously mentioned when this branch first appeared in /testing, on the 32-bit side there are no longer any -smp labeled kernel packages, so if you were using those previously, you'll need to switch to using to kernel-generic or kernel-huge kernel, including the changes needed to your bootloader setup to load this instead of the -smp labeled kernel. Also, if you happen to be using a first generation Pentium M chip, you will need to append forcepae to your kernel command-line options. Enjoy! :-) a/kernel-firmware-20231211_f2e52a1-noarch-1.txz: Upgraded. a/kernel-generic-6.6.6-x86_64-1.txz: Upgraded. a/kernel-huge-6.6.6-x86_64-1.txz: Upgraded. a/kernel-modules-6.6.6-x86_64-1.txz: Upgraded. ap/qpdf-11.6.4-x86_64-1.txz: Upgraded. d/kernel-headers-6.6.6-x86-1.txz: Upgraded. k/kernel-source-6.6.6-noarch-1.txz: Upgraded. l/imagemagick-7.1.1_23-x86_64-1.txz: Upgraded. l/libsecret-0.21.2-x86_64-1.txz: Upgraded. Thanks to reddog83 and saxa. l/zxing-cpp-2.2.1-x86_64-1.txz: Upgraded. n/postfix-3.8.3-x86_64-2.txz: Rebuilt. OpenSSL upstream says that major versions are ABI/API compatible, so stop warning in the logs that they might not be. Thanks to gildbg and Markus Wiesner. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/k/build-all-kernels.sh')
-rwxr-xr-xsource/k/build-all-kernels.sh13
1 files changed, 4 insertions, 9 deletions
diff --git a/source/k/build-all-kernels.sh b/source/k/build-all-kernels.sh
index 0ac96bdf6..e4b907bae 100755
--- a/source/k/build-all-kernels.sh
+++ b/source/k/build-all-kernels.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright 2018, 2021, 2022 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# Copyright 2018, 2021, 2022, 2023 Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -52,7 +52,7 @@ if [ -z "$RECIPES" ]; then
if uname -m | grep -wq x86_64 ; then
RECIPES="x86_64"
elif uname -m | grep -wq i.86 ; then
- RECIPES="IA32_NO_SMP IA32_SMP"
+ RECIPES="IA32"
else
echo "Error: no build recipes available for $(uname -m)"
exit 1
@@ -69,13 +69,8 @@ for recipe in $RECIPES ; do
export CONFIG_SUFFIX=".x64"
unset LOCALVERSION
OUTPUT=${OUTPUT:-${TMP}/output-x86_64-${VERSION}}
- elif [ "$recipe" = "IA32_SMP" ]; then
- # Recipe for IA32_SMP:
- unset CONFIG_SUFFIX
- LOCALVERSION="-smp"
- OUTPUT=${OUTPUT:-${TMP}/output-ia32-${VERSION}}
- elif [ "$recipe" = "IA32_NO_SMP" ]; then
- # Recipe for IA32_NO_SMP:
+ elif [ "$recipe" = "IA32" ]; then
+ # Recipe for IA32:
unset CONFIG_SUFFIX
unset LOCALVERSION
OUTPUT=${OUTPUT:-${TMP}/output-ia32-${VERSION}}