summaryrefslogtreecommitdiff
path: root/scripts/iommu.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/iommu.sh')
-rwxr-xr-xscripts/iommu.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/iommu.sh b/scripts/iommu.sh
new file mode 100755
index 0000000..d971665
--- /dev/null
+++ b/scripts/iommu.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+shopt -s nullglob
+for g in $(find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V); do
+ echo "IOMMU Group ${g##*/}:"
+ for d in $g/devices/*; do
+ echo -e "\t$(lspci $@ -nns ${d##*/})"
+ done;
+done;