blob: 7d93a5d8e410e17c19f53f8bbb06f8afffb1c942 [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
Jayanth Othayoth5744a3b2020-04-29 07:00:39 -050032 default "a005cb03e8977e19a0a73bf5d48c8ee1a8751617" if BR2_EKB_LATEST_VERSION
Ramesh Iyyarebfe9d82020-03-23 21:58:20 -050033 default BR2_EKB_CUSTOM_VERSION_VALUE if BR2_EKB_CUSTOM_VERSION
34endif
35
36endmenu