From d934827bf44b7cfcf6711964418148fa60877668 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 25 Nov 2020 22:39:15 +0000 Subject: gentoo resync : 25.11.2020 --- eclass/kernel-build.eclass | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'eclass/kernel-build.eclass') diff --git a/eclass/kernel-build.eclass b/eclass/kernel-build.eclass index 048d0c9b016c..99279ba58a99 100644 --- a/eclass/kernel-build.eclass +++ b/eclass/kernel-build.eclass @@ -197,6 +197,38 @@ kernel-build_pkg_postinst() { savedconfig_pkg_postinst } +# @FUNCTION: kernel-build_merge_configs +# @USAGE: [distro.config...] +# @DESCRIPTION: +# Merge the config files specified as arguments (if any) into +# the '.config' file in the current directory, then merge +# any user-supplied configs from ${BROOT}/etc/kernel/config.d/*.config. +# The '.config' file must exist already and contain the base +# configuration. +kernel-build_merge_configs() { + debug-print-function ${FUNCNAME} "${@}" + + [[ -f .config ]] || die "${FUNCNAME}: .config does not exist" + has .config "${@}" && + die "${FUNCNAME}: do not specify .config as parameter" + + local shopt_save=$(shopt -p nullglob) + shopt -s nullglob + local user_configs=( "${BROOT}"/etc/kernel/config.d/*.config ) + shopt -u nullglob + + if [[ ${#user_configs[@]} -gt 0 ]]; then + elog "User config files are being applied:" + local x + for x in "${user_configs[@]}"; do + elog "- ${x}" + done + fi + + ./scripts/kconfig/merge_config.sh -m -r \ + .config "${@}" "${user_configs[@]}" || die +} + _KERNEL_BUILD_ECLASS=1 fi -- cgit v1.2.3