Merge branch 'master' into docs

This commit is contained in:
raja-grewal 2025-11-10 00:20:48 +11:00 committed by GitHub
commit 0aa0b67df6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 113 additions and 7 deletions

View file

@ -0,0 +1,17 @@
#!/bin/bash
## Copyright (C) 2025 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
## See the file COPYING for copying conditions.
set -e
export LC_ALL='C'
## Package 'pciutils' provides tool 'lspci'.
command -v lspci &>/dev/null
if lspci | grep --quiet '^[^ ]* USB controller: '; then
exit 0
fi
exit 1