diff --git a/scripts/diagnostics.sh b/scripts/diagnostics.sh index 24be399bb..33b307149 100755 --- a/scripts/diagnostics.sh +++ b/scripts/diagnostics.sh @@ -11,6 +11,7 @@ all_components=( "serial" "sam" "kconfig" + "lspci" ) @@ -218,6 +219,14 @@ if [[ " ${components[*]} " =~ " kconfig " ]]; then done; fi +# collect lspci +if [[ " ${components[*]} " =~ " lspci " ]]; then + echo " - kernel configuration" + + sudo lspci -nn -vvv > "${tmpdir}/lspci.txt" + sudo lspci -nn -v -t > "${tmpdir}/lspci-tree.txt" +fi + # bundle to archive echo " ==> generating archive..."