blob: c7fdf14b794be1af483c9393c87963ee592e6b0f [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
Klaus Heinrich Kiwidc4a86f2020-05-11 16:29:14 -03006 depends on BR2_PACKAGE_HAS_PPE42_TOOLCHAIN
Sachin Guptadf0b6a02017-03-16 08:59:51 -05007 help
8 Project to build the sbe firmware codebase
Stewart Smith062ec2d2018-04-29 20:24:20 -05009
10if BR2_PACKAGE_SBE
11
12choice
13 prompt "SBE version"
Stewart Smithd68fc1f2018-05-16 21:11:31 -050014 default BR2_SBE_LATEST_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050015
Stewart Smith062ec2d2018-04-29 20:24:20 -050016config BR2_SBE_LATEST_VERSION
17 bool "Use latest SBE master"
18
19config BR2_SBE_CUSTOM_VERSION
20 bool "Custom SBE version"
21
22endchoice
23
24config BR2_SBE_CUSTOM_VERSION_VALUE
25 string "SBE version"
26 depends on BR2_SBE_CUSTOM_VERSION
27
28config BR2_SBE_VERSION
29 string
hostboot50c3bd32021-09-14 18:02:03 -050030 default "0208243c5bbd68fa36464397fa46a2940c827edf" if BR2_SBE_LATEST_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050031 default BR2_SBE_CUSTOM_VERSION_VALUE \
32 if BR2_SBE_CUSTOM_VERSION
33
34endif