blob: 95159de5c7b26883de42c12c4df2f5e6818e8b36 [file] [log] [blame]
Ramesh Iyyar25f085a2020-03-29 08:07:13 -05001menu "pdata"
2
3config BR2_PACKAGE_PDATA
4 bool "pdata"
5 default y if (BR2_OPENPOWER_POWER10)
6 depends on BR2_PACKAGE_EKB
7 depends on BR2_PACKAGE_MACHINE_XML
8 help
9 To initialize and boot a server, various software components
10 ( BMC apps and Hostboot) will interact. PDATA provides device tree
11 based infrastructure to get the attributes which are required
12 to boot the server and run time usage. Also provides API's
13 to manage the attributes data.
14
15if BR2_PACKAGE_PDATA
16
17choice
18 prompt "PDATA version"
19 default BR2_PDATA_LATEST_VERSION
20
21config BR2_PDATA_LATEST_VERSION
22 bool "Use latest PDATA master"
23
24config BR2_PDATA_CUSTOM_VERSION
25 bool "Custom PDATA version"
26
27endchoice
28
29config BR2_PDATA_CUSTOM_VERSION_VALUE
30 string "PDATA version"
31 depends on BR2_PDATA_CUSTOM_VERSION
32
33config BR2_PDATA_VERSION
34 string
Ramesh Iyyarbfb9d3c2020-07-08 02:06:08 -050035 default "68cbe66c904ffc6a72b5a6d791b96a6d23a20b99" if BR2_PDATA_LATEST_VERSION
Ramesh Iyyar25f085a2020-03-29 08:07:13 -050036 default BR2_PDATA_CUSTOM_VERSION_VALUE if BR2_PDATA_CUSTOM_VERSION
37
38endif
39
40endmenu