Brian Silver | cb56555 | 2014-12-11 12:51:36 -0600 | [diff] [blame] | 1 | config BR2_PACKAGE_OCC |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 2 | bool "OCC (POWER9)" |
| 3 | default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9) |
Klaus Heinrich Kiwi | dc4a86f | 2020-05-11 16:29:14 -0300 | [diff] [blame] | 4 | depends on BR2_PACKAGE_HAS_PPE42_TOOLCHAIN |
Brian Silver | cb56555 | 2014-12-11 12:51:36 -0600 | [diff] [blame] | 5 | select BR2_CPP |
| 6 | help |
| 7 | Project to build OCC |
| 8 | |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 9 | if BR2_PACKAGE_OCC |
| 10 | |
Brian Silver | cb56555 | 2014-12-11 12:51:36 -0600 | [diff] [blame] | 11 | config BR2_OCC_BIN_FILENAME |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 12 | string "Name of OCC P9 image file" |
| 13 | default "occ.bin" |
Brian Silver | cb56555 | 2014-12-11 12:51:36 -0600 | [diff] [blame] | 14 | help |
| 15 | String used to define name of the OCC binary image file |
Bill Hoffa | 11a23f2 | 2017-10-03 07:58:12 -0500 | [diff] [blame] | 16 | |
| 17 | config BR2_OCC_GPU_BIN_BUILD |
| 18 | bool "Enables Compilation of GPU Binary Image" |
| 19 | default n |
Stewart Smith | 6af7663 | 2018-04-27 06:45:42 +1000 | [diff] [blame] | 20 | select BR2_PACKAGE_HOSTBOOT_BINARIES |
Bill Hoffa | 11a23f2 | 2017-10-03 07:58:12 -0500 | [diff] [blame] | 21 | help |
| 22 | Boolean used to flag whether to compile OCC GPU binary |
| 23 | |
| 24 | config BR2_OCC_GPU_GPE_BIN_FILENAME |
| 25 | string "Name of OCC GPU GPE Binary file" |
| 26 | help |
| 27 | String used to define name of the OCC GPUE GPE binary image file |
| 28 | |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 29 | choice |
| 30 | prompt "OCC version" |
Stewart Smith | d68fc1f | 2018-05-16 21:11:31 -0500 | [diff] [blame] | 31 | default BR2_OCC_LATEST_VERSION |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 32 | |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 33 | config BR2_OCC_LATEST_VERSION |
| 34 | bool "Use latest OCC master" |
| 35 | |
| 36 | config BR2_OCC_CUSTOM_VERSION |
| 37 | bool "Custom OCC version" |
| 38 | |
| 39 | endchoice |
| 40 | |
| 41 | config BR2_OCC_CUSTOM_VERSION_VALUE |
| 42 | string "OCC version" |
| 43 | depends on BR2_OCC_CUSTOM_VERSION |
| 44 | |
| 45 | config BR2_OCC_VERSION |
| 46 | string |
hostboot | 742943b | 2020-12-04 02:29:56 -0600 | [diff] [blame] | 47 | default "16131c38c2e593206447403c3ac79b18fb86e21a" if BR2_OCC_LATEST_VERSION |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 48 | default BR2_OCC_CUSTOM_VERSION_VALUE \ |
| 49 | if BR2_OCC_CUSTOM_VERSION |
| 50 | |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 51 | endif |
| 52 | |