aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-02-17 19:07:53 +0100
committeraxtloss <axtlos@getcryst.al>2024-02-17 19:14:02 +0100
commit63d3b78538e2e40bd199ee771bcdf9413e542319 (patch)
tree2381993e25d50aa2f40f478babf52ed4e30c4088 /config/config.go
parentf57eeabfad55a691ec62e2bda98d4f467d3729b3 (diff)
downloadfsverify-63d3b78538e2e40bd199ee771bcdf9413e542319.tar.gz
fsverify-63d3b78538e2e40bd199ee771bcdf9413e542319.tar.bz2
Multithread fsverify
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go
index f8e61e4..0a71847 100644
--- a/config/config.go
+++ b/config/config.go
@@ -4,5 +4,9 @@ package config
// 0: external file, 1: external storage device, 2: tpm2, 3: usb serial
var KeyStore = 3
-// Where the public key is stored, only applies for 0, 1 and 3
+// Where the public key is stored, only applies for KeyStore = 0, 1 and 3
var KeyLocation = "/dev/ttyACM1"
+
+// The amount of threads the DB was created with, has to be the amount of processes
+// verifysetup was set to use
+var ProcCount = 12