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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AB8E21581D3 for ; Mon, 20 May 2024 12:59:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93FDEE2A3C; Mon, 20 May 2024 12:59:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6139BE2A3C for ; Mon, 20 May 2024 12:59:15 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9800C33BF3B for ; Mon, 20 May 2024 12:59:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D0B21AE6 for ; Mon, 20 May 2024 12:59:13 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1716209939.4e00c787cad4c40e6a2991635b37c0f283730d51.bkohler@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: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 4e00c787cad4c40e6a2991635b37c0f283730d51 X-VCS-Branch: master Date: Mon, 20 May 2024 12:59:13 +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: 051c7f0c-498e-4b3b-8d8a-ec27a1067c8b X-Archives-Hash: 39bc9147665f41e8944e035fb540d257 commit: 4e00c787cad4c40e6a2991635b37c0f283730d51 Author: Dmitriy Baranov gmail com> AuthorDate: Tue Mar 5 14:24:46 2024 +0000 Commit: Ben Kohler gentoo org> CommitDate: Mon May 20 12:58:59 2024 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=4e00c787 gen_initramfs.sh: fix gen_die message in append_modules() Signed-off-by: Dmitriy Baranov gmail.com> Signed-off-by: Ben Kohler gentoo.org> gen_initramfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index aaf108e..87e5149 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -1923,7 +1923,7 @@ append_modules() { if [ ! -f "${mymod}" ] then - gen_die "Module '${i}${KEXT}' is missing!" + gen_die "Module '${mymod}' is missing!" fi modlist+=( "${mymod/#${modules_srcdir}\//}" )