first commit
This commit is contained in:
8
profiles/base/.local/bin/iommu_groups
Executable file
8
profiles/base/.local/bin/iommu_groups
Executable file
@@ -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;
|
||||
Reference in New Issue
Block a user