summaryrefslogtreecommitdiffstats
path: root/openpower/package/hostboot/Config.in
blob: 96502b6d02c26505f121e6884d73fb33a4c1eefe (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
34
35
36
37
38
39
config BR2_PACKAGE_HOSTBOOT
        bool "hostboot"
        default y if (BR2_OPENPOWER_POWER9)
        select BR2_CPP
        help
            Project to build the hostboot firmware codebase

if BR2_PACKAGE_HOSTBOOT

choice
	prompt "Hostboot version"
	default BR2_HOSTBOOT_LATEST_VERSION

config BR2_HOSTBOOT_LATEST_VERSION
	bool "Use latest Hostboot master"

config BR2_HOSTBOOT_CUSTOM_VERSION
	bool "Custom version"

endchoice

config BR2_HOSTBOOT_CUSTOM_VERSION_VALUE
	string "hostboot version"
	depends on BR2_HOSTBOOT_CUSTOM_VERSION

config BR2_HOSTBOOT_VERSION
	string
	default "492bf9d657062d38f1c5276101e263f42eba1ee0" if BR2_HOSTBOOT_LATEST_VERSION
	default BR2_HOSTBOOT_CUSTOM_VERSION_VALUE \
		if BR2_HOSTBOOT_CUSTOM_VERSION

config BR2_HOSTBOOT_CONFIG_FILE
        string "Hostboot configuration file for compilation"
        default default
        help
            String used to define hw specific make config file

endif

OpenPOWER on IntegriCloud