Add systemd-boot configuration guide (#32)

pull/33/head
Subhabrata 8 months ago committed by GitHub
parent 506720a2da
commit 516f086488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,7 +18,8 @@ Disable ***Resizable BAR Support*** in BIOS settings.
Cards that support Resizable BAR can cause problems with black screens following driver load if Resizable BAR is enabled in UEFI/BIOS. There doesn't seem to be a large performance penalty for disabling it, so turn it off for now until ReBAR support is available for KVM. Cards that support Resizable BAR can cause problems with black screens following driver load if Resizable BAR is enabled in UEFI/BIOS. There doesn't seem to be a large performance penalty for disabling it, so turn it off for now until ReBAR support is available for KVM.
***Set the kernel paramater depending on your CPU.*** \ ***Set the kernel paramater depending on your CPU.*** \
For GRUB user, edit grub configuration.
For GRUB user, edit GRUB configuration
| /etc/default/grub | | /etc/default/grub |
| ----- | | ----- |
| `GRUB_CMDLINE_LINUX_DEFAULT="... intel_iommu=on iommu=pt ..."` | | `GRUB_CMDLINE_LINUX_DEFAULT="... intel_iommu=on iommu=pt ..."` |
@ -29,6 +30,15 @@ For GRUB user, edit grub configuration.
```sh ```sh
grub-mkconfig -o /boot/grub/grub.cfg grub-mkconfig -o /boot/grub/grub.cfg
``` ```
For systemd-boot user, edit this configuration
| /boot/loader/entries/*.conf |
| ----- |
| `options root=UUID=...intel_iommu=on iommu=pt..` |
| OR |
| `options root=UUID=...amd_iommu=on iommu=pt..` |
Unlike GRUB, systemd-boot doesn't require a separate command to regenerate the configuration. It automatically detects changes
Reboot your system for the changes to take effect. Reboot your system for the changes to take effect.
***To verify IOMMU, run the following command.*** ***To verify IOMMU, run the following command.***

Loading…
Cancel
Save