blob: 7251bee0996cfd1d3cae6716a953e41814f04aa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
config BR2_PACKAGE_HCODE
bool "hcode"
default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9)
select BR2_CPP
help
Project to build the hcode firmware codebase
if BR2_PACKAGE_HCODE
config BR2_HCODE_INCLUDE_IONV
bool "Enables packaging of the NVIDIA GPU image into the final hw image"
default y
help
Boolean used to flag whether to include NVIDIA GPU binary
choice
prompt "HCODE version"
default BR2_HCODE_LATEST_VERSION
config BR2_HCODE_LATEST_VERSION
bool "Use latest HCODE master"
config BR2_HCODE_CUSTOM_VERSION
bool "Custom HCODE version"
endchoice
config BR2_HCODE_CUSTOM_VERSION_VALUE
string "HCODE version"
depends on BR2_HCODE_CUSTOM_VERSION
config BR2_HCODE_VERSION
string
default "hw031319a.940" if BR2_HCODE_LATEST_VERSION
default BR2_HCODE_CUSTOM_VERSION_VALUE \
if BR2_HCODE_CUSTOM_VERSION
endif
|