blob: 9d9a0ac96faf0afe4b8dd22bf8e2072c52f7aa9d [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"
Stewart Smithd68fc1f2018-05-16 21:11:31 -050013 default BR2_SBE_LATEST_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050014
Stewart Smith062ec2d2018-04-29 20:24:20 -050015config BR2_SBE_LATEST_VERSION
16 bool "Use latest SBE master"
17
18config BR2_SBE_CUSTOM_VERSION
19 bool "Custom SBE version"
20
21endchoice
22
23config BR2_SBE_CUSTOM_VERSION_VALUE
24 string "SBE version"
25 depends on BR2_SBE_CUSTOM_VERSION
26
27config BR2_SBE_VERSION
28 string
hostboot2d113282019-08-28 18:02:12 -050029 default "50895b93a8e4390b0990ee22824c8a5ee28ea9f8" if BR2_SBE_LATEST_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050030 default BR2_SBE_CUSTOM_VERSION_VALUE \
31 if BR2_SBE_CUSTOM_VERSION
32
33endif