diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2025-07-31 04:41:28 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2026-04-12 13:43:35 +0000 |
| commit | 7db1376bd1519d5ec48153d8c19a5a343fa59019 (patch) | |
| tree | c0bf5af72d19d99893488caf3688a88f1a45d1e5 | |
| parent | 621b3b8992839c62297350363e7d63866af3978c (diff) | |
loader: add nvidia modules to the loader blacklist
It is known that nvidia modules, like the drm modules that are already
present, will panic if loaded in early boot rather than later. Pop them
into our list to deny loading them if someone were to add, e.g.,
nvidia-modeset_load="YES", to their loader.conf. This doesn't prevent
them from being loaded if one drops to the loader prompt, but it does
prevent the standard user from easy foot-shooting if they find old or
inaccurate information out in the wild.
Reviewed by: imp, kbowling
(cherry picked from commit 763a097c156f36830e774b3cc789f68c5d1ae601)
| -rw-r--r-- | stand/defaults/loader.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stand/defaults/loader.conf b/stand/defaults/loader.conf index 3f06c7371bb1..b714d3d69204 100644 --- a/stand/defaults/loader.conf +++ b/stand/defaults/loader.conf @@ -111,6 +111,7 @@ kernels_autodetect="YES" # Auto-detect kernel directories in /boot #currdev="disk1s1a" # Set the current device module_path="/boot/modules;/boot/dtb;/boot/dtb/overlays" # Set the module search path module_blacklist="drm drm2 radeonkms i915kms amdgpu if_iwlwifi if_rtw88 if_rtw89" # Loader module blacklist +module_blacklist="${module_blacklist} nvidia nvidia-drm nvidia-modeset" #prompt="\\${interpret}" # Set the command prompt #root_disk_unit="0" # Force the root disk unit number #rootdev="disk1s1a" # Set the root filesystem |
