-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathConfig.in
39 lines (29 loc) · 1012 Bytes
/
Config.in
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
config BR2_PACKAGE_HOSTBOOT_P11
bool "hostboot-p11"
default y if (BR2_OPENPOWER_POWER11)
select BR2_CPP
help
Project to build the Hostboot package for P11
if BR2_PACKAGE_HOSTBOOT_P11
choice
prompt "P11 Hostboot version"
default BR2_HOSTBOOT_P11_LATEST_VERSION
config BR2_HOSTBOOT_P11_LATEST_VERSION
bool "Use latest Hostboot version"
config BR2_HOSTBOOT_P11_CUSTOM_VERSION
bool "Use custom Hostboot version"
endchoice
config BR2_HOSTBOOT_P11_CUSTOM_VERSION_VALUE
string "Hostboot P11 version"
depends on BR2_HOSTBOOT_P11_CUSTOM_VERSION
config BR2_HOSTBOOT_P11_VERSION
string
default "703ee67d0eb0e5538720b31faa34a0e682439603" if BR2_HOSTBOOT_P11_LATEST_VERSION
default BR2_HOSTBOOT_P11_CUSTOM_VERSION_VALUE \
if BR2_HOSTBOOT_P11_CUSTOM_VERSION
config BR2_HOSTBOOT_P11_CONFIG_FILE
string "Hostboot configuration file for compilation"
default default
help
String used to define hw specific make config file
endif