Skip to content

Commit

Permalink
Remove sound modules from host as audio is passed through
Browse files Browse the repository at this point in the history
Cannot remove whole snd as it is used by thinkpad_acpi

Signed-off-by: Jon Sahlberg <[email protected]>
  • Loading branch information
josa41 authored and brianmcgillion committed Oct 13, 2024
1 parent eb0a409 commit 4d050ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
kernelConfig.kernelParams = [
"intel_iommu=on,sm_on"
"iommu=pt"
"module_blacklist=i915" # Prevent i915 module from being accidentally used by host
"module_blacklist=i915,snd_pcm" # Prevent i915,snd_pcm module from being accidentally used by host
"acpi_backlight=vendor"
"acpi_osi=linux"
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
kernelConfig.kernelParams = [
"intel_iommu=on,sm_on"
"iommu=pt"
"module_blacklist=i915,xe" # Prevent i915,xe modules from being accidentally used by host
"module_blacklist=i915,xe,snd_pcm" # Prevent i915,xe,snd_pcm modules from being accidentally used by host
"acpi_backlight=vendor"
"acpi_osi=linux"
];
Expand Down

0 comments on commit 4d050ba

Please sign in to comment.