You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vfio-guide-2/scripts/iommu.sh

11 lines
431 B
Bash

#!/bin/bash
## Outputs the IOMMU groups and the devices inside them
## Source [https://wiki.installgentoo.com/index.php/PCI_passthrough#Step_2:_Find_out_your_IOMMU_groups]
for iommu_group in \
$(find /sys/kernel/iommu_groups/ -maxdepth 1 -mindepth 1 -type d); do \
echo "IOMMU group $(basename "$iommu_group")"; \
for device in $(ls -1 "$iommu_group"/devices/); do \
echo -n $'\t'; lspci -nns "$device"; \
done; \
done