aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlyingWaffle <flyingwaffle@pm.me>2022-05-28 17:59:43 -0500
committerSam James <sam@gentoo.org>2023-08-30 06:47:44 +0100
commitcbb69958759cef4d4df4b3e24b3348a9601deb3e (patch)
treef119856f5571948450dd5f5920eb06fdbbe32e85 /gen_determineargs.sh
parentPlymouth support for genkernel (squashed). (diff)
downloadgenkernel-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>
Diffstat (limited to 'gen_determineargs.sh')
-rwxr-xr-xgen_determineargs.sh4
1 files 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}"