From cbb69958759cef4d4df4b3e24b3348a9601deb3e Mon Sep 17 00:00:00 2001 From: FlyingWaffle Date: Sat, 28 May 2022 17:59:43 -0500 Subject: 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 Closes: https://github.com/gentoo/genkernel/pull/29 Signed-off-by: Sam James --- gen_determineargs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_determineargs.sh b/gen_determineargs.sh index 448e5076..cefa614e 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}" -- cgit v1.2.3-65-gdbad