| menu "ekb" |
| |
| config BR2_PACKAGE_EKB |
| bool "ekb" |
| default y if (BR2_OPENPOWER_POWER10) |
| help |
| To get FAPI attributes xml files. This is required for generate |
| power processor specific device tree by using specific HWPs xmls. |
| If new processor need to support then adding required xmls |
| in this package file is sufficient by using BR2_OPENPOWER_POWERxx. |
| |
| if BR2_PACKAGE_EKB |
| |
| choice |
| prompt "EKB version" |
| default BR2_EKB_LATEST_VERSION |
| |
| config BR2_EKB_LATEST_VERSION |
| bool "Use latest EKB master" |
| |
| config BR2_EKB_CUSTOM_VERSION |
| bool "Custom EKB version" |
| |
| endchoice |
| |
| config BR2_EKB_CUSTOM_VERSION_VALUE |
| string "EKB version" |
| depends on BR2_EKB_CUSTOM_VERSION |
| |
| config BR2_EKB_VERSION |
| string |
| default "289ff52f89894e39211150444ff3e9fc296e67df" if BR2_EKB_LATEST_VERSION |
| default BR2_EKB_CUSTOM_VERSION_VALUE if BR2_EKB_CUSTOM_VERSION |
| endif |
| |
| endmenu |