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" |
Stewart Smith | d68fc1f | 2018-05-16 21:11:31 -0500 | [diff] [blame] | 30 | default BR2_OCC_LATEST_VERSION |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 31 | |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 32 | config BR2_OCC_LATEST_VERSION |
| 33 | bool "Use latest OCC master" |
| 34 | |
| 35 | config BR2_OCC_CUSTOM_VERSION |
| 36 | bool "Custom OCC version" |
| 37 | |
| 38 | endchoice |
| 39 | |
| 40 | config BR2_OCC_CUSTOM_VERSION_VALUE |
| 41 | string "OCC version" |
| 42 | depends on BR2_OCC_CUSTOM_VERSION |
| 43 | |
| 44 | config BR2_OCC_VERSION |
| 45 | string |
Stewart Smith | 7a68493 | 2018-05-11 10:03:11 -0500 | [diff] [blame] | 46 | default "77bb5e602b4aa3421e38af2b8fadb55bb2e9496b" if BR2_OCC_LATEST_VERSION |
Stewart Smith | 2f718e4 | 2018-05-02 01:47:29 -0500 | [diff] [blame] | 47 | default BR2_OCC_CUSTOM_VERSION_VALUE \ |
| 48 | if BR2_OCC_CUSTOM_VERSION |
| 49 | |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 50 | endif |
| 51 | |