summaryrefslogtreecommitdiffstats
path: root/source/installer
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-05-26 20:00:32 +0000
committer Eric Hameleers <alien@slackware.com>2021-05-27 08:59:55 +0200
commit45dee3ba77755824f2f23bb8fae10822f74ec025 (patch)
treea9a1ff9f069d2d019a0c1559c486d4ebea2b72e0 /source/installer
parentb913726b939032d0a3aa7656f27bb4e022f36104 (diff)
downloadcurrent-45dee3ba77755824f2f23bb8fae10822f74ec025.tar.gz
current-45dee3ba77755824f2f23bb8fae10822f74ec025.tar.xz
Wed May 26 20:00:32 UTC 202120210526200032
a/kernel-generic-5.10.40-x86_64-1.txz: Upgraded. a/kernel-huge-5.10.40-x86_64-1.txz: Upgraded. a/kernel-modules-5.10.40-x86_64-1.txz: Upgraded. d/kernel-headers-5.10.40-x86-1.txz: Upgraded. k/kernel-source-5.10.40-noarch-1.txz: Upgraded. l/librsvg-2.50.6-x86_64-1.txz: Upgraded. l/python-urllib3-1.26.5-x86_64-1.txz: Upgraded. n/ca-certificates-20210526-noarch-1.txz: Upgraded. This update provides the latest CA certificates to check for the authenticity of SSL connections. n/curl-7.77.0-x86_64-1.txz: Upgraded. This update fixes security issues: schannel cipher selection surprise TELNET stack contents disclosure TLS session caching disaster For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22297 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22298 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22901 (* Security fix *) n/net-snmp-5.9.1-x86_64-1.txz: Upgraded. n/nftables-0.9.9-x86_64-1.txz: Upgraded. x/libinput-1.17.3-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. testing/packages/linux-5.12.x/kernel-generic-5.12.7-x86_64-1.txz: Upgraded. testing/packages/linux-5.12.x/kernel-headers-5.12.7-x86-1.txz: Upgraded. testing/packages/linux-5.12.x/kernel-huge-5.12.7-x86_64-1.txz: Upgraded. testing/packages/linux-5.12.x/kernel-modules-5.12.7-x86_64-1.txz: Upgraded. testing/packages/linux-5.12.x/kernel-source-5.12.7-noarch-1.txz: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/installer')
-rw-r--r--source/installer/ChangeLog.txt3
-rwxr-xr-xsource/installer/build_installer.sh6
2 files changed, 9 insertions, 0 deletions
diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt
index 3f38f3ba6..03fd62b4c 100644
--- a/source/installer/ChangeLog.txt
+++ b/source/installer/ChangeLog.txt
@@ -1,3 +1,6 @@
+Wed May 26 19:51:53 UTC 2021
+ Keep PCI controller kernel modules. Thanks to andygoth.
++--------------------------+
Fri Apr 30 17:30:36 UTC 2021
setup: filter partition list through sort | uniq to prevent duplicates.
Thanks to Heinz Wiesinger.
diff --git a/source/installer/build_installer.sh b/source/installer/build_installer.sh
index 4ddaf0675..47c93734a 100755
--- a/source/installer/build_installer.sh
+++ b/source/installer/build_installer.sh
@@ -1597,8 +1597,14 @@ for ind in $(seq 0 $((${#KERNELS[*]} -1)) ); do
# Save the Hyper-V keyboard module:
mkdir -p input.orig/serio
cp -a input/serio/hyperv-keyboard.ko input.orig/serio
+ # Save any PCI controller modules:
+ if [ -d pci/controller ]; then
+ mkdir -p pci.orig/controller
+ cp -a pci/controller/* pci.orig/controller
+ fi
rm -rf${VERBOSE1} ata atm bluetooth clocksource connector crypto dma idle infiniband input isdn kvm leds media memstick message mfd misc pci power rtc serial telephony uwb w1 watchdog
mv input.orig input
+ mv pci.orig pci 2> /dev/null
if [ "$ADD_KMS" = "1" ]; then
# Keep video.ko and button.ko, needed by some gpu drivers.