summaryrefslogtreecommitdiffstats
path: root/openpower/package/sbe/Config.in
blob: 0a9236ec98c422b05ee12e48afe283537df7b941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
config BR2_PACKAGE_SBE
        bool "sbe"
        default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9)
        select BR2_CPP
        depends on BR2_PACKAGE_HCODE
        help
            Project to build the sbe firmware codebase

if BR2_PACKAGE_SBE

choice
	prompt "SBE version"
	default BR2_SBE_LATEST_VERSION

config BR2_SBE_LATEST_VERSION
	bool "Use latest SBE master"

config BR2_SBE_CUSTOM_VERSION
	bool "Custom SBE version"

endchoice

config BR2_SBE_CUSTOM_VERSION_VALUE
	string "SBE version"
	depends on BR2_SBE_CUSTOM_VERSION

config BR2_SBE_VERSION
	string
	default "1410677b65e40e541560aa28918329bc3c2d2d35" if BR2_SBE_LATEST_VERSION
	default BR2_SBE_CUSTOM_VERSION_VALUE \
		if BR2_SBE_CUSTOM_VERSION

endif
OpenPOWER on IntegriCloud