Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 1 | config BR2_PACKAGE_HCODE |
| 2 | bool "hcode" |
| 3 | default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9) |
| 4 | select BR2_CPP |
| 5 | help |
| 6 | Project to build the hcode firmware codebase |
| 7 | |
Stewart Smith | 4b6a8ce | 2018-04-26 18:06:24 +1000 | [diff] [blame] | 8 | if BR2_PACKAGE_HCODE |
| 9 | |
Richard J. Knight | 3f0e29c | 2017-10-13 10:39:01 -0500 | [diff] [blame] | 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 | |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 16 | choice |
| 17 | prompt "HCODE version" |
Stewart Smith | d68fc1f | 2018-05-16 21:11:31 -0500 | [diff] [blame] | 18 | default BR2_HCODE_LATEST_VERSION |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 19 | |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 20 | config BR2_HCODE_LATEST_VERSION |
| 21 | bool "Use latest HCODE master" |
| 22 | |
| 23 | config BR2_HCODE_CUSTOM_VERSION |
| 24 | bool "Custom HCODE version" |
| 25 | |
| 26 | endchoice |
| 27 | |
| 28 | config BR2_HCODE_CUSTOM_VERSION_VALUE |
| 29 | string "HCODE version" |
| 30 | depends on BR2_HCODE_CUSTOM_VERSION |
| 31 | |
| 32 | config BR2_HCODE_VERSION |
| 33 | string |
hostboot | 20ec92e | 2019-02-07 02:50:55 -0600 | [diff] [blame] | 34 | default "hw020619a.930" if BR2_HCODE_LATEST_VERSION |
Stewart Smith | 5fb8a33 | 2018-04-26 18:11:38 +1000 | [diff] [blame] | 35 | default BR2_HCODE_CUSTOM_VERSION_VALUE \ |
| 36 | if BR2_HCODE_CUSTOM_VERSION |
| 37 | |
Stewart Smith | 4b6a8ce | 2018-04-26 18:06:24 +1000 | [diff] [blame] | 38 | endif |