blob: 56cfd85312cf6c5c706e2fbc863e3f6649ceaf3b (
plain)
1
2
3
4
5
6
7
|
#! /usr/bin/env bash
# This was copied from somewhere a while ago, forgot to put the link.
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done
|