cmdline: fix naming of --software-tpm argument

This accidentally got renamed to just --tpm in the argh refactor.

BUG=None
TEST=cargo build --features=tpm && crosvm run --software-tpm ...

Change-Id: Ifa31faef9c566d3e3828a726138e635c41beb582
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3707379
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-by: Anton Romanov <romanton@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Daniel Verkamp 2022-06-16 10:46:07 -07:00 committed by Chromeos LUCI
parent fb641f67e4
commit a059bff152

View file

@ -913,7 +913,7 @@ pub struct RunCommand {
/// path to put the control socket. If PATH is a directory, a name will be generated
pub socket_path: Option<PathBuf>,
#[cfg(feature = "tpm")]
#[argh(switch, long = "tpm")]
#[argh(switch)]
/// enable a software emulated trusted platform module device
pub software_tpm: bool,
#[cfg(feature = "audio")]