aboutsummaryrefslogtreecommitdiff
path: root/verify/config/config.go
blob: bd1527a9d1c5a86ac703af0d317cabd24d8f8f98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package config

// How the public key is stored
// 0: external file, 1: external storage device, 2: tpm2, 3: usb serial
var KeyStore = 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

// Which partition/file to use as the fsverify partition
var FsVerifyPart = "./verifysetup/part.fsverify"

var FbWarnLoc = "/fsverify/bin/fbwarn"
var BVGLoc = "/fsverify/share/warn.bvg"