blob: 40eca7e5f38140e4e9ed1e54f7613d1cf26db45d [file] [log] [blame]
Nick Bofferdingf390b6f2019-10-08 11:55:42 -05001config BR2_PACKAGE_HCODE_P10
2 bool "hcode-p10"
3 default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER10)
4 select BR2_CPP
5 help
6 Project to build the HCODE package for P10
7
8if BR2_PACKAGE_HCODE_P10
9
10config BR2_HCODE_INCLUDE_IONV
11 bool "Enables packaging of the NVIDIA GPU image into the final hw image"
12 default y
13 help
14 Boolean used to flag whether to include NVIDIA GPU binary
15
16choice
17 prompt "HCODE version"
18 default BR2_HCODE_P10_LATEST_VERSION
19
20config BR2_HCODE_P10_LATEST_VERSION
21 bool "Use latest HCODE P10 version"
22
23config BR2_HCODE_P10_CUSTOM_VERSION
24 bool "Custom HCODE P10 version"
25
26endchoice
27
28config BR2_HCODE_P10_CUSTOM_VERSION_VALUE
29 string "HCODE P10 version"
30 depends on BR2_HCODE_P10_CUSTOM_VERSION
31
32config BR2_HCODE_P10_VERSION
33 string
hostboot0dab79a2022-07-11 00:39:25 -050034 default "hw070822a.opmst10" if BR2_HCODE_P10_LATEST_VERSION
Nick Bofferdingf390b6f2019-10-08 11:55:42 -050035 default BR2_HCODE_P10_CUSTOM_VERSION_VALUE \
36 if BR2_HCODE_P10_CUSTOM_VERSION
37
38endif