blob: 232beb77f98f0c109183af3e1a23b66d4e2cf732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## SPDX-License-Identifier: GPL-2.0-only
config SOC_IBM_POWER9
bool
select ARCH_BOOTBLOCK_PPC64
select ARCH_VERSTAGE_PPC64
select ARCH_ROMSTAGE_PPC64
select ARCH_RAMSTAGE_PPC64
help
This SoC is the minimal template working on POWER9 Talos II platform.
if SOC_IBM_POWER9
config SIGNING_KEYS_DIR
string "Directory with OpenPower signing keys"
default ""
help
Specifies path to directory containing hw_key_{a,b,c}.key
and sw_key_p.key files (all in PEM format). Key name suffixes
correspond to options of create-container from OpenPower
Signing Utils. By default, test keys are used.
endif
|