blob: a70fa0fdb0710208a09c564b20ed6291a4c9a505 [file] [log] [blame]
Ramesh Iyyarebfe9d82020-03-23 21:58:20 -05001menu "ekb"
2
3config 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
12if BR2_PACKAGE_EKB
13
14choice
15 prompt "EKB version"
16 default BR2_EKB_LATEST_VERSION
17
18config BR2_EKB_LATEST_VERSION
19 bool "Use latest EKB master"
20
21config BR2_EKB_CUSTOM_VERSION
22 bool "Custom EKB version"
23
24endchoice
25
26config BR2_EKB_CUSTOM_VERSION_VALUE
27 string "EKB version"
28 depends on BR2_EKB_CUSTOM_VERSION
29
30config 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
34endif
35
36endmenu