blob: c1479cc455a9ba7d107bbd109ca07ab2771b4710 [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
Lakshminarayana R. Kammath75e43882020-05-15 08:10:12 -050032 default "5149a901545d178da5aab0ac2f97898462027279" 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