blob: 92d61ea0b34aa68a8f9417a2923f8e7c2d672fe8 [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
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