diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-12-02 20:46:52 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-12-02 22:28:02 +0100 |
commit | dc90ac8e7330c0323524f8707b39b1d9f3c7a66e (patch) | |
tree | 6dea505becbd9fe1c4b3438474225e6869036c2a /testing | |
parent | 0e4c181655a6847ee8308178a62decf591db187e (diff) | |
download | current-dc90ac8e7330c0323524f8707b39b1d9f3c7a66e.tar.gz current-dc90ac8e7330c0323524f8707b39b1d9f3c7a66e.tar.xz |
Sat Dec 2 20:46:52 UTC 202320231202204652
a/upower-1.90.1-x86_64-2.txz: Rebuilt.
Recompiled against libplist-2.3.0.
ap/usbmuxd-20231011_360619c-x86_64-1.txz: Upgraded.
Compiled against libplist-2.3.0.
kde/kio-extras-23.08.3-x86_64-2.txz: Rebuilt.
Recompiled against libplist-2.3.0.
kde/libindi-2.0.5-x86_64-1.txz: Upgraded.
kde/solid-5.112.0-x86_64-2.txz: Rebuilt.
Recompiled against libplist-2.3.0.
l/gvfs-1.52.1-x86_64-2.txz: Rebuilt.
Recompiled against libplist-2.3.0.
l/libgpod-0.8.3-x86_64-13.txz: Rebuilt.
Recompiled against libplist-2.3.0.
l/libimobiledevice-20231007_04c0233-x86_64-1.txz: Upgraded.
Compiled against libplist-2.3.0.
l/libimobiledevice-glue-20231110_e314faa-x86_64-1.txz: Upgraded.
Compiled against libplist-2.3.0.
l/libplist-2.3.0-x86_64-1.txz: Upgraded.
Shared library .so-version bump.
l/libseccomp-2.5.5-x86_64-1.txz: Upgraded.
l/libusbmuxd-20230901_30e678d-x86_64-1.txz: Upgraded.
Compiled against libplist-2.3.0.
l/poppler-23.12.0-x86_64-1.txz: Upgraded.
xfce/tumbler-4.18.2-x86_64-1.txz: Upgraded.
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/source/linux-6.6.x/kernel-modules.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/testing/source/linux-6.6.x/kernel-modules.SlackBuild b/testing/source/linux-6.6.x/kernel-modules.SlackBuild index d7df6d3c4..fa3cd1639 100755 --- a/testing/source/linux-6.6.x/kernel-modules.SlackBuild +++ b/testing/source/linux-6.6.x/kernel-modules.SlackBuild @@ -41,8 +41,12 @@ BUILD=${BUILD:-1} # The CONFIG_DEBUG_INFO_BTF_MODULES option adds a huge amount of debugging # data to the modules which we don't actually need. We'll strip debugging # information from kernel modules by default. If you are building a debug -# kernel and wish to retain this data, export the variable below set to "NO". -STRIP_DEBUG=${STRIP_DEBUG:-YES} +# kernel and wish to retain this data, export the variable below set to "0". +STRIP_DEBUG=${STRIP_DEBUG:-1} + +# Let's export the variable with the name needed by the kernel's Makefiles, +# just for good measure. +export INSTALL_MOD_STRIP=$STRIP_DEBUG if [ ! -r "${KERNEL_CONFIG}" ]; then echo "Error: the KERNEL_CONFIG environment variable needs to be set to the" @@ -115,11 +119,7 @@ fi echo "Building kernel modules..." make $NUMJOBS modules || exit 1 echo "Installing kernel modules to $PKG..." - make INSTALL_MOD_PATH=$PKG modules_install || exit 1 - if [ "$STRIP_DEBUG" = "YES" ]; then - echo "Stripping debug info from kernel modules..." - find $PKG -name "*.ko" -exec strip --strip-debug "{}" \; - fi + make INSTALL_MOD_PATH=$PKG INSTALL_MOD_STRIP=$STRIP_DEBUG modules_install || exit 1 # Fix build and source symlinks if they are pointing into $TMP: ( cd $PKG/lib/modules/${VERSION}${LOCALVERSION} for symlink in build source ; do |