diff options
author | FlyingWaffle <flyingwaffle@pm.me> | 2022-05-28 17:59:43 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-08-30 06:47:44 +0100 |
commit | cbb69958759cef4d4df4b3e24b3348a9601deb3e (patch) | |
tree | f119856f5571948450dd5f5920eb06fdbbe32e85 | |
parent | Plymouth support for genkernel (squashed). (diff) | |
download | genkernel-cbb69958759cef4d4df4b3e24b3348a9601deb3e.tar.gz genkernel-cbb69958759cef4d4df4b3e24b3348a9601deb3e.tar.bz2 genkernel-cbb69958759cef4d4df4b3e24b3348a9601deb3e.zip |
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@pm.me>
Closes: https://github.com/gentoo/genkernel/pull/29
Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-x | gen_determineargs.sh | 4 |
1 files 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}" |