Notes, scripts, XML files, and README

This commit is contained in:
2021-11-10 11:44:40 +00:00
parent 4fa8bb36e5
commit a08865d18c
12 changed files with 710 additions and 1 deletions

6
scripts/iommu.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done