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 |
| 7 | To get FAPI attributes xml files. This is required for generate |
| 8 | power processor specific device tree by using specific HWPs xmls. |
| 9 | If new processor need to support then adding required xmls |
| 10 | in this package file is sufficient by using BR2_OPENPOWER_POWERxx. |
| 11 | |
| 12 | if BR2_PACKAGE_EKB |
| 13 | |
| 14 | choice |
| 15 | prompt "EKB version" |
| 16 | default BR2_EKB_LATEST_VERSION |
| 17 | |
| 18 | config BR2_EKB_LATEST_VERSION |
| 19 | bool "Use latest EKB master" |
| 20 | |
| 21 | config BR2_EKB_CUSTOM_VERSION |
| 22 | bool "Custom EKB version" |
| 23 | |
| 24 | endchoice |
| 25 | |
| 26 | config BR2_EKB_CUSTOM_VERSION_VALUE |
| 27 | string "EKB version" |
| 28 | depends on BR2_EKB_CUSTOM_VERSION |
| 29 | |
| 30 | config BR2_EKB_VERSION |
| 31 | string |
| 32 | default "289ff52f89894e39211150444ff3e9fc296e67df" if BR2_EKB_LATEST_VERSION |
| 33 | default BR2_EKB_CUSTOM_VERSION_VALUE if BR2_EKB_CUSTOM_VERSION |
| 34 | endif |
| 35 | |
| 36 | endmenu |