summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-10-01 11:42:50 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-10-01 11:42:50 +0100
commitb447ac3a6d1bb09ddb6a5686620670e223b37642 (patch)
tree4d6d1ca6d418b0dc7c50e0e94cef5038f5fb2483 /eclass
parent9a92076d428b51966bd8d699427341e5500b3a8a (diff)
gentoo auto-resync : 01:10:2023 - 11:42:49
Diffstat (limited to 'eclass')
-rw-r--r--eclass/Manifest.gzbin39133 -> 39145 bytes
-rw-r--r--eclass/kernel-build.eclass14
-rw-r--r--eclass/toolchain-funcs.eclass4
3 files changed, 1 insertions, 17 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz
index 89318aa8492e..b9d65c429a7f 100644
--- a/eclass/Manifest.gz
+++ b/eclass/Manifest.gz
Binary files differ
diff --git a/eclass/kernel-build.eclass b/eclass/kernel-build.eclass
index 01cd184f41c0..4f7e4d047739 100644
--- a/eclass/kernel-build.eclass
+++ b/eclass/kernel-build.eclass
@@ -444,20 +444,6 @@ kernel-build_merge_configs() {
fi
fi
- if [[ ${KERNEL_IUSE_SECUREBOOT} ]]; then
- if use secureboot; then
- # This only effects arm64 and riscv where the bootable image may
- # contain its own decompressor (zboot). If enabled we get a
- # sign-able efi file.
- cat <<-EOF > "${WORKDIR}/secureboot.config" || die
- ## Enable zboot for signing
- CONFIG_EFI_ZBOOT=y
- EOF
-
- merge_configs+=( "${WORKDIR}/secureboot.config" )
- fi
- fi
-
if [[ ${#user_configs[@]} -gt 0 ]]; then
elog "User config files are being applied:"
local x
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 556bbac35307..8398ee004a7d 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -576,9 +576,7 @@ _tc-has-openmp() {
# @DESCRIPTION:
# Test for OpenMP support with the current compiler and error out with
# a clear error message, telling the user how to rectify the missing
-# OpenMP support that has been requested by the ebuild. Using this function
-# to test for OpenMP support should be preferred over tc-has-openmp and
-# printing a custom message, as it presents a uniform interface to the user.
+# OpenMP support that has been requested by the ebuild.
#
# You should test for any necessary OpenMP support in pkg_pretend in order to
# warn the user of required toolchain changes. You must still check for OpenMP