From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A34413835A for ; Tue, 25 Aug 2020 17:42:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B0D0E0977; Tue, 25 Aug 2020 17:42:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53313E0977 for ; Tue, 25 Aug 2020 17:42:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09638335DC4 for ; Tue, 25 Aug 2020 17:42:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D06632D for ; Tue, 25 Aug 2020 17:42:24 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1598375945.494fa0725ce3c3b4b8044d53ea6c13fce2c823bb.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_initramfs.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 494fa0725ce3c3b4b8044d53ea6c13fce2c823bb X-VCS-Branch: master Date: Tue, 25 Aug 2020 17:42:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e744d20b-90b2-4e41-9c09-63a6867a85e9 X-Archives-Hash: a0347698d4fc82a6ab6bee3cb51f1da4 commit: 494fa0725ce3c3b4b8044d53ea6c13fce2c823bb Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Aug 25 17:19:05 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Aug 25 17:19:05 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=494fa072 gen_initramfs.sh: append_modules(): Update modules.* files to represent initramfs content Signed-off-by: Thomas Deutschmann gentoo.org> gen_initramfs.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index eaa6f30..5bee813 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -1721,6 +1721,11 @@ append_modules() { cp -ax --parents --target-directory "${modules_dstdir}" modules* 2>/dev/null \ || gen_die "Failed to copy '${modules_srcdir}/modules*' to '${modules_dstdir}'!" + print_info 2 "$(get_indent 2)modules: Updating modules.dep ..." + local a depmod_cmd=( depmod -a -b "${TDIR}" ${KV} ) + print_info 3 "COMMAND: ${depmod_cmd[*]}" 1 0 1 + eval "${depmod_cmd[@]}" || gen_die "Failed to run '${depmod_cmd[*]}'!" + local group_modules= group= for group_modules in ${!MODULES_*} do