blob: ec0aef2224017305803698be9441a21eedb5026a [file] [log] [blame]
Bill Hoffa128bda42019-07-10 16:34:55 -05001config BR2_PACKAGE_OCMB_EXPLORER_FW
2 bool "ocmb_explorer_fw"
3 default y if (BR2_OPENPOWER_PLATFORM)
4 help
5 Project to stage ocmb explorer fw and binary image releases
6
7if BR2_PACKAGE_OCMB_EXPLORER_FW
8
9choice
10 prompt "OCMB Explorer Binary version"
11 default BR2_OCMB_EXPLORER_FW_LATEST_VERSION
12
13config BR2_OCMB_EXPLORER_FW_LATEST_VERSION
14 bool "Use latest OCMB_EXPLORER_FW master"
15
16config BR2_OCMB_EXPLORER_FW_CUSTOM_VERSION
17 bool "Custom OCMB_EXPLORER_FW version"
18
19endchoice
20
21config BR2_OCMB_EXPLORER_FW_CUSTOM_VERSION_VALUE
22 string "Open CAPI Memory Buffer Firmware version"
23 depends on BR2_OCMB_EXPLORER_FW_CUSTOM_VERSION
24
25config BR2_OCMB_EXPLORER_FW_VERSION
26 string
27 default "v0.b" if BR2_OCMB_EXPLORER_FW_LATEST_VERSION
28 default BR2_OCMB_EXPLORER_FW_CUSTOM_VERSION_VALUE \
29 if BR2_OCMB_EXPLORER_FW_CUSTOM_VERSION
30
31config BR2_OCMB_EXPLORER_FW_URL
32 string
33 default "https://github.com/open-power/ocmb-explorer-fw"
34
35endif