summaryrefslogtreecommitdiff
path: root/cli_args.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-08-15 23:31:37 +0200
committerJakob Unterwurzacher2018-08-15 23:31:37 +0200
commitbd054e70ef1c0f9709b5bc216ba148cf088d7edb (patch)
tree0cef30f59c72082d20fa361567b1cc0ef1cd0413 /cli_args.go
parent7771a33f659420b76b5f49eeda80b3f6d7728425 (diff)
trezor: show support in version string
Show enable_trezor in the version string if we were compiled with `-tags enable_trezor`. And hide the `-trezor` flag from the help output if we were not.
Diffstat (limited to 'cli_args.go')
-rw-r--r--cli_args.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/cli_args.go b/cli_args.go
index 114a27e..dd00658 100644
--- a/cli_args.go
+++ b/cli_args.go
@@ -12,6 +12,7 @@ import (
"github.com/rfjakob/gocryptfs/internal/configfile"
"github.com/rfjakob/gocryptfs/internal/exitcodes"
"github.com/rfjakob/gocryptfs/internal/prefer_openssl"
+ "github.com/rfjakob/gocryptfs/internal/readpassword"
"github.com/rfjakob/gocryptfs/internal/stupidgcm"
"github.com/rfjakob/gocryptfs/internal/tlog"
)
@@ -152,7 +153,9 @@ func parseCliOpts() (args argContainer) {
flagSet.BoolVar(&args.sharedstorage, "sharedstorage", false, "Make concurrent access to a shared CIPHERDIR safer")
flagSet.BoolVar(&args.devrandom, "devrandom", false, "Use /dev/random for generating master key")
flagSet.BoolVar(&args.fsck, "fsck", false, "Run a filesystem check on CIPHERDIR")
- flagSet.BoolVar(&args.trezor, "trezor", false, "Protect the masterkey using a SatoshiLabs Trezor instead of a password")
+ if readpassword.TrezorSupport {
+ flagSet.BoolVar(&args.trezor, "trezor", false, "Protect the masterkey using a SatoshiLabs Trezor instead of a password")
+ }
// Mount options with opposites
flagSet.BoolVar(&args.dev, "dev", false, "Allow device files")