blob: 7cd6c08eb02286749c0440f504d4c3b6592e88ef [file] [log] [blame]
Sachin Guptadf0b6a02017-03-16 08:59:51 -05001config BR2_PACKAGE_SBE
2 bool "sbe"
3 default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9)
4 select BR2_CPP
Richard J. Knight3f0e29c2017-10-13 10:39:01 -05005 depends on BR2_PACKAGE_HCODE
Sachin Guptadf0b6a02017-03-16 08:59:51 -05006 help
7 Project to build the sbe firmware codebase
Stewart Smith062ec2d2018-04-29 20:24:20 -05008
9if BR2_PACKAGE_SBE
10
11choice
12 prompt "SBE version"
13 default BR2_SBE_OP920_VERSION
14
15config BR2_SBE_OP920_VERSION
16 bool "Use latest SBE stable version (OP920)"
17
18config BR2_SBE_LATEST_VERSION
19 bool "Use latest SBE master"
20
21config BR2_SBE_CUSTOM_VERSION
22 bool "Custom SBE version"
23
24endchoice
25
26config BR2_SBE_CUSTOM_VERSION_VALUE
27 string "SBE version"
28 depends on BR2_SBE_CUSTOM_VERSION
29
30config BR2_SBE_VERSION
31 string
32 default "a389a5d98c2ab38292ce7451c210b3cb0293938c" if BR2_SBE_LATEST_VERSION
Stewart Smith1d651dd2018-05-09 16:55:50 -050033 default "8e0105e5e964de6e99e60a96ae3f3829efe02080" if BR2_SBE_OP920_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050034 default BR2_SBE_CUSTOM_VERSION_VALUE \
35 if BR2_SBE_CUSTOM_VERSION
36
37endif