summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsarthurdev <965089+sarthurdev@users.noreply.github.com>2024-09-17 10:25:36 +0200
committersarthurdev <965089+sarthurdev@users.noreply.github.com>2024-09-17 10:25:36 +0200
commite35345a446f26fea92ae916b47257fc0712b8670 (patch)
tree3bd2f3fe080a956f4cb991e763e8a1e7455dd3d1
parentbe867edddc35ed5e8880c6de3a55e879dbf70524 (diff)
downloadvyos-build-e35345a446f26fea92ae916b47257fc0712b8670.tar.gz
vyos-build-e35345a446f26fea92ae916b47257fc0712b8670.zip
tpm: T4919: Fix check for /dev/tpm0
-rwxr-xr-xscripts/check-qemu-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index e1fd45f1..d28cb48a 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -569,7 +569,7 @@ try:
tpm_timeout = 600 # Give it 10 mins to encrypt
# Verify TPM is loaded
- c.sendline('ls /dev/tpm0')
+ c.sendline('find /dev -name tpm0')
c.expect('/dev/tpm0')
c.expect(op_mode_prompt)