Ramesh Iyyar | ebfe9d8 | 2020-03-23 21:58:20 -0500 | [diff] [blame] | 1 | menu "ekb" |
| 2 | |
| 3 | config BR2_PACKAGE_EKB |
| 4 | bool "ekb" |
| 5 | default y if (BR2_OPENPOWER_POWER10) |
| 6 | help |
Ramesh Iyyar | f99f0d1 | 2020-06-19 03:19:12 -0500 | [diff] [blame] | 7 | To boot the server, the bmc application and hostboot will expect |
| 8 | hardware functional details which are maintained in xml files by ekb. |
| 9 | So, this packge is used to get all those xml files and pdata will |
| 10 | consume those xml files to add hardware functional details into |
| 11 | device tree. |
Ramesh Iyyar | ebfe9d8 | 2020-03-23 21:58:20 -0500 | [diff] [blame] | 12 | |
| 13 | if BR2_PACKAGE_EKB |
| 14 | |
| 15 | choice |
| 16 | prompt "EKB version" |
| 17 | default BR2_EKB_LATEST_VERSION |
| 18 | |
| 19 | config BR2_EKB_LATEST_VERSION |
| 20 | bool "Use latest EKB master" |
| 21 | |
| 22 | config BR2_EKB_CUSTOM_VERSION |
| 23 | bool "Custom EKB version" |
| 24 | |
| 25 | endchoice |
| 26 | |
| 27 | config BR2_EKB_CUSTOM_VERSION_VALUE |
| 28 | string "EKB version" |
| 29 | depends on BR2_EKB_CUSTOM_VERSION |
| 30 | |
| 31 | config BR2_EKB_VERSION |
| 32 | string |
Ramesh Iyyar | 3314435 | 2020-07-23 05:59:36 -0500 | [diff] [blame^] | 33 | default "a991724ab7a3318cbf792e32518012a652664a66" if BR2_EKB_LATEST_VERSION |
Ramesh Iyyar | ebfe9d8 | 2020-03-23 21:58:20 -0500 | [diff] [blame] | 34 | default BR2_EKB_CUSTOM_VERSION_VALUE if BR2_EKB_CUSTOM_VERSION |
| 35 | endif |
| 36 | |
| 37 | endmenu |