blob: 6a2317e295b555a19e65e6506724230fcae8b9f0 [file] [log] [blame]
AKASHI Takahiro58c95c22020-04-14 11:51:49 +09001# SPDX-License-Identifier: GPL-2.0+
2
Heinrich Schuchardt14dee8b2023-05-03 07:08:05 +02003"""Constants used for secure boot test."""
4
AKASHI Takahiro58c95c22020-04-14 11:51:49 +09005# Owner guid
AKASHI Takahiro719e89d2020-07-08 14:01:58 +09006GUID = '11111111-2222-3333-4444-123456789abc'
AKASHI Takahiro58c95c22020-04-14 11:51:49 +09007
8# v1.5.1 or earlier of efitools has a bug in sha256 calculation, and
9# you need build a newer version on your own.
AKASHI Takahiro79f428e2020-07-21 19:35:24 +090010# The path must terminate with '/'.
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090011EFITOOLS_PATH = ''
AKASHI Takahiro79f428e2020-07-21 19:35:24 +090012
13# "--addcert" option of sbsign must be available, otherwise
14# you need build a newer version on your own.
15# The path must terminate with '/'.
16SBSIGN_PATH = ''