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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E1D79158089 for ; Sat, 28 Oct 2023 01:59:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D65772BC058; Sat, 28 Oct 2023 01:59:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA2D82BC05F for ; Sat, 28 Oct 2023 01:59:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8DE1335C2A for ; Sat, 28 Oct 2023 01:59:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED9A212D9 for ; Sat, 28 Oct 2023 01:59:01 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1698458332.c691ab1f1e2493e5ca16ab23545ad3c87f152802.sam@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_moddeps.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c691ab1f1e2493e5ca16ab23545ad3c87f152802 X-VCS-Branch: master Date: Sat, 28 Oct 2023 01:59:01 +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: 869e3cf6-7704-4c90-94c2-962f452f93a4 X-Archives-Hash: 79425fc259d6a185d243fda7140deb4d commit: c691ab1f1e2493e5ca16ab23545ad3c87f152802 Author: Dmitry Baranov gmail com> AuthorDate: Wed Oct 25 12:27:17 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 28 01:58:52 2023 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c691ab1f gen_moddeps.sh: fix including extra modules when ALLRAMDISKMODULES="yes" depmod util doesn't care about updating modules.order when the new extra modules was installed. Bug: https://bugs.gentoo.org/916233 Signed-off-by: Dmitry Baranov gmail.com> Closes: https://github.com/gentoo/genkernel/pull/51 Signed-off-by: Sam James gentoo.org> gen_moddeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_moddeps.sh b/gen_moddeps.sh index 556751d..070131c 100755 --- a/gen_moddeps.sh +++ b/gen_moddeps.sh @@ -27,7 +27,7 @@ gen_dep_list() { if isTrue "${ALLRAMDISKMODULES}" then cat "${moddir}/modules.builtin" - cat "${moddir}/modules.order" + cat "${moddir}/modules.dep" | cut -d':' -f1 else local -a modlist=() moddeplist=()