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