blob: d5b84855e6089f514b347b10a1e13ad30c11bdce [file] [log] [blame]
Nick Bofferdingf390b6f2019-10-08 11:55:42 -05001config BR2_PACKAGE_OCC_P10
Nick Bofferding5b477702019-10-10 10:37:31 -05002 bool "OCC (POWER10)"
Nick Bofferdingf390b6f2019-10-08 11:55:42 -05003 default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER10)
4 select BR2_CPP
5 help
6 Project to build OCC for P10
7
8if BR2_PACKAGE_OCC_P10
9
10config BR2_OCC_P10_BIN_FILENAME
Nick Bofferding5b477702019-10-10 10:37:31 -050011 string "Name of P10 OCC image file"
12 default "occ.bin"
13 help
14 String used to define name of the P10 OCC binary image file
15
16config BR2_OCC_P10_GPU_BIN_BUILD
17 bool "Enables Compilation of P10 GPU Binary Image"
18 default n
19 select BR2_PACKAGE_HOSTBOOT_BINARIES
20 help
21 Boolean used to flag whether to compile P10 OCC GPU binary
22
23config BR2_OCC_P10_GPU_GPE_BIN_FILENAME
24 string "Name of P10 OCC GPU GPE Binary file"
25 help
26 String used to define name of the P10 OCC GPUE GPE binary image file
27
28choice
29 prompt "P10 OCC version"
30 default BR2_OCC_P10_LATEST_VERSION
31
32config BR2_OCC_P10_LATEST_VERSION
33 bool "Use latest P10 OCC master"
34
35config BR2_OCC_P10_CUSTOM_VERSION
36 bool "Custom P10 OCC version"
37
38endchoice
39
40config BR2_OCC_P10_CUSTOM_VERSION_VALUE
41 string "P10 OCC version"
42 depends on BR2_OCC_P10_CUSTOM_VERSION
43
44config BR2_OCC_P10_VERSION
45 string
hostboot855acbf2023-01-26 00:47:34 -060046 default "0a704ca8b4b1739c7413fbeb14322c2085c511d2" if BR2_OCC_P10_LATEST_VERSION
Nick Bofferding5b477702019-10-10 10:37:31 -050047 default BR2_OCC_P10_CUSTOM_VERSION_VALUE \
48 if BR2_OCC_P10_CUSTOM_VERSION
Nick Bofferdingf390b6f2019-10-08 11:55:42 -050049
50endif