Nick Bofferding | f390b6f | 2019-10-08 11:55:42 -0500 | [diff] [blame] | 1 | config BR2_PACKAGE_OCC_P10 |
Nick Bofferding | 5b47770 | 2019-10-10 10:37:31 -0500 | [diff] [blame] | 2 | bool "OCC (POWER10)" |
Nick Bofferding | f390b6f | 2019-10-08 11:55:42 -0500 | [diff] [blame] | 3 | default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER10) |
| 4 | select BR2_CPP |
| 5 | help |
| 6 | Project to build OCC for P10 |
| 7 | |
| 8 | if BR2_PACKAGE_OCC_P10 |
| 9 | |
| 10 | config BR2_OCC_P10_BIN_FILENAME |
Nick Bofferding | 5b47770 | 2019-10-10 10:37:31 -0500 | [diff] [blame] | 11 | string "Name of P10 OCC image file" |
| 12 | default "occ.bin" |
| 13 | help |
| 14 | String used to define name of the P10 OCC binary image file |
| 15 | |
| 16 | config BR2_OCC_P10_GPU_BIN_BUILD |
| 17 | bool "Enables Compilation of P10 GPU Binary Image" |
| 18 | default n |
| 19 | select BR2_PACKAGE_HOSTBOOT_BINARIES |
| 20 | help |
| 21 | Boolean used to flag whether to compile P10 OCC GPU binary |
| 22 | |
| 23 | config BR2_OCC_P10_GPU_GPE_BIN_FILENAME |
| 24 | string "Name of P10 OCC GPU GPE Binary file" |
| 25 | help |
| 26 | String used to define name of the P10 OCC GPUE GPE binary image file |
| 27 | |
| 28 | choice |
| 29 | prompt "P10 OCC version" |
| 30 | default BR2_OCC_P10_LATEST_VERSION |
| 31 | |
| 32 | config BR2_OCC_P10_LATEST_VERSION |
| 33 | bool "Use latest P10 OCC master" |
| 34 | |
| 35 | config BR2_OCC_P10_CUSTOM_VERSION |
| 36 | bool "Custom P10 OCC version" |
| 37 | |
| 38 | endchoice |
| 39 | |
| 40 | config BR2_OCC_P10_CUSTOM_VERSION_VALUE |
| 41 | string "P10 OCC version" |
| 42 | depends on BR2_OCC_P10_CUSTOM_VERSION |
| 43 | |
| 44 | config BR2_OCC_P10_VERSION |
| 45 | string |
hostboot | 855acbf | 2023-01-26 00:47:34 -0600 | [diff] [blame] | 46 | default "0a704ca8b4b1739c7413fbeb14322c2085c511d2" if BR2_OCC_P10_LATEST_VERSION |
Nick Bofferding | 5b47770 | 2019-10-10 10:37:31 -0500 | [diff] [blame] | 47 | default BR2_OCC_P10_CUSTOM_VERSION_VALUE \ |
| 48 | if BR2_OCC_P10_CUSTOM_VERSION |
Nick Bofferding | f390b6f | 2019-10-08 11:55:42 -0500 | [diff] [blame] | 49 | |
| 50 | endif |