commit: cbb69958759cef4d4df4b3e24b3348a9601deb3e Author: FlyingWaffle <flyingwaffle <AT> pm <DOT> me> AuthorDate: Sat May 28 22:59:43 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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 <flyingwaffle <AT> pm.me> Closes: https://github.com/gentoo/genkernel/pull/29 Signed-off-by: Sam James <sam <AT> 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}"