-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathConfig.in
38 lines (29 loc) · 980 Bytes
/
Config.in
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_P11
bool "hcode-p11"
default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER11)
select BR2_CPP
help
Project to build the HCODE package for P11
if BR2_PACKAGE_HCODE_P11
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_P11_LATEST_VERSION
config BR2_HCODE_P11_LATEST_VERSION
bool "Use latest HCODE P11 version"
config BR2_HCODE_P11_CUSTOM_VERSION
bool "Custom HCODE P11 version"
endchoice
config BR2_HCODE_P11_CUSTOM_VERSION_VALUE
string "HCODE P11 version"
depends on BR2_HCODE_P11_CUSTOM_VERSION
config BR2_HCODE_P11_VERSION
string
default "hw041625b.opmainp11" if BR2_HCODE_P11_LATEST_VERSION
default BR2_HCODE_P11_CUSTOM_VERSION_VALUE \
if BR2_HCODE_P11_CUSTOM_VERSION
endif