Nick Bofferding | f390b6f | 2019-10-08 11:55:42 -0500 | [diff] [blame^] | 1 | config 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 | |
| 8 | if BR2_PACKAGE_HCODE_P10 |
| 9 | |
| 10 | config 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 | |
| 16 | choice |
| 17 | prompt "HCODE version" |
| 18 | default BR2_HCODE_P10_LATEST_VERSION |
| 19 | |
| 20 | config BR2_HCODE_P10_LATEST_VERSION |
| 21 | bool "Use latest HCODE P10 version" |
| 22 | |
| 23 | config BR2_HCODE_P10_CUSTOM_VERSION |
| 24 | bool "Custom HCODE P10 version" |
| 25 | |
| 26 | endchoice |
| 27 | |
| 28 | config BR2_HCODE_P10_CUSTOM_VERSION_VALUE |
| 29 | string "HCODE P10 version" |
| 30 | depends on BR2_HCODE_P10_CUSTOM_VERSION |
| 31 | |
| 32 | config BR2_HCODE_P10_VERSION |
| 33 | string |
| 34 | default "hw092119a.opmst" if BR2_HCODE_P10_LATEST_VERSION |
| 35 | default BR2_HCODE_P10_CUSTOM_VERSION_VALUE \ |
| 36 | if BR2_HCODE_P10_CUSTOM_VERSION |
| 37 | |
| 38 | endif |