blob: 0acf63bb9d91734d97cb065e158f7f1feeede025 [file] [log] [blame]
Bill Hoffa128bda42019-07-10 16:34:55 -05001config BR2_PACKAGE_OCMB_EXPLORER_FW
2 bool "ocmb_explorer_fw"
Jeremy Kerrbe6225f2019-08-07 11:57:06 +08003 default n
Bill Hoffa128bda42019-07-10 16:34:55 -05004 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
Christian Geddesf5054302019-11-13 15:28:53 -060027 default "v2.0" if BR2_OCMB_EXPLORER_FW_LATEST_VERSION
Bill Hoffa128bda42019-07-10 16:34:55 -050028 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