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

endif
OpenPOWER on IntegriCloud