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 69B4315800A for ; Wed, 30 Aug 2023 05:48:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB99F2BC01C; Wed, 30 Aug 2023 05:48:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 93DA62BC01C for ; Wed, 30 Aug 2023 05:48:11 +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 9E0513402D6 for ; Wed, 30 Aug 2023 05:48:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E2C510E4 for ; Wed, 30 Aug 2023 05:48:09 +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: <1693374464.cbb69958759cef4d4df4b3e24b3348a9601deb3e.sam@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_determineargs.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cbb69958759cef4d4df4b3e24b3348a9601deb3e X-VCS-Branch: master Date: Wed, 30 Aug 2023 05:48:09 +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: b0256127-b788-4391-b94f-742df1acaa48 X-Archives-Hash: 1929c47bfb78280a19cc780379409d29 commit: cbb69958759cef4d4df4b3e24b3348a9601deb3e Author: FlyingWaffle pm me> AuthorDate: Sat May 28 22:59:43 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 30 05:47:44 2023 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=cbb69958 Changed firmware and modules requirements to warnings. Depending on system configuration and hardware, added firmware and modules might not be required for Plymouth to function. Bug: https://bugs.gentoo.org/753617 Signed-off-by: FlyingWaffle pm.me> Closes: https://github.com/gentoo/genkernel/pull/29 Signed-off-by: Sam James gentoo.org> gen_determineargs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_determineargs.sh b/gen_determineargs.sh index 448e507..cefa614 100755 --- a/gen_determineargs.sh +++ b/gen_determineargs.sh @@ -1029,12 +1029,12 @@ determine_real_args() { if isTrue "${PLYMOUTH}" && ! isTrue "${FIRMWARE}" then - gen_die "--plymouth requires --firmware but --no-firmware is set!" + print_warning 3 "--plymouth potentially requires graphics firmware to function! Please configure your --firmware flags appropriately!" fi if isTrue "${PLYMOUTH}" && ! isTrue "${ALLRAMDISKMODULES}" then - gen_die "--plymouth requires --all-ramdisk-modules but --no-all-ramdisk-modules is set!" + print_warning 3 "--plymouth potentially requires DRM kernel modules to function! Please configure your --ramdisk-modules flags appropriately!" fi if isTrue "${SSH}"