summaryrefslogtreecommitdiffstats
path: root/openpower/package/sbe/Config.in
blob: 4b6c256e6a900ef9b9fc150d37ef9662339ca8d8 (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 "6a87332a88b227f5716188c14ae21139840c8387" if BR2_SBE_LATEST_VERSION
	default BR2_SBE_CUSTOM_VERSION_VALUE \
		if BR2_SBE_CUSTOM_VERSION

endif
OpenPOWER on IntegriCloud