From d2b6bc463bb0ca546935737c401f99233c54d36b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Renaud=20M=C3=A9trich?= Date: Tue, 2 Dec 2025 09:38:29 +0100 Subject: [PATCH] feat(systemd): pull 'drm' module unless excluded MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some graphic cards require the 'drm' module to be present to be able to setup the console font (e.g. 'i915' requires it). Signed-off-by: Renaud Métrich --- modules.d/00systemd/module-setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules.d/00systemd/module-setup.sh b/modules.d/00systemd/module-setup.sh index 9a13a1dbba..f8bcf316f7 100755 --- a/modules.d/00systemd/module-setup.sh +++ b/modules.d/00systemd/module-setup.sh @@ -13,6 +13,8 @@ check() { # called by dracut depends() { + # Include "drm" to be able to set the console font properly + [[ " $omit_dracutmodules " != *\ drm\ * ]] && echo "drm" return 0 }