blob: b55a58a610f29c45d582966d5f9840b3a2375683 [file] [log] [blame]
Brian Silvercb565552014-12-11 12:51:36 -06001config BR2_PACKAGE_OCC
Stewart Smith03671c02017-02-17 14:57:57 +11002 bool "OCC (POWER9)"
3 default y if (BR2_OPENPOWER_PLATFORM && BR2_OPENPOWER_POWER9)
Klaus Heinrich Kiwidc4a86f2020-05-11 16:29:14 -03004 depends on BR2_PACKAGE_HAS_PPE42_TOOLCHAIN
Brian Silvercb565552014-12-11 12:51:36 -06005 select BR2_CPP
6 help
7 Project to build OCC
8
Stewart Smith03671c02017-02-17 14:57:57 +11009if BR2_PACKAGE_OCC
10
Brian Silvercb565552014-12-11 12:51:36 -060011config BR2_OCC_BIN_FILENAME
Stewart Smith03671c02017-02-17 14:57:57 +110012 string "Name of OCC P9 image file"
13 default "occ.bin"
Brian Silvercb565552014-12-11 12:51:36 -060014 help
15 String used to define name of the OCC binary image file
Bill Hoffa11a23f22017-10-03 07:58:12 -050016
17config BR2_OCC_GPU_BIN_BUILD
18 bool "Enables Compilation of GPU Binary Image"
19 default n
Stewart Smith6af76632018-04-27 06:45:42 +100020 select BR2_PACKAGE_HOSTBOOT_BINARIES
Bill Hoffa11a23f22017-10-03 07:58:12 -050021 help
22 Boolean used to flag whether to compile OCC GPU binary
23
24config BR2_OCC_GPU_GPE_BIN_FILENAME
25 string "Name of OCC GPU GPE Binary file"
26 help
27 String used to define name of the OCC GPUE GPE binary image file
28
Stewart Smith2f718e42018-05-02 01:47:29 -050029choice
30 prompt "OCC version"
Stewart Smithd68fc1f2018-05-16 21:11:31 -050031 default BR2_OCC_LATEST_VERSION
Stewart Smith2f718e42018-05-02 01:47:29 -050032
Stewart Smith2f718e42018-05-02 01:47:29 -050033config BR2_OCC_LATEST_VERSION
34 bool "Use latest OCC master"
35
36config BR2_OCC_CUSTOM_VERSION
37 bool "Custom OCC version"
38
39endchoice
40
41config BR2_OCC_CUSTOM_VERSION_VALUE
42 string "OCC version"
43 depends on BR2_OCC_CUSTOM_VERSION
44
45config BR2_OCC_VERSION
46 string
hostboot742943b2020-12-04 02:29:56 -060047 default "16131c38c2e593206447403c3ac79b18fb86e21a" if BR2_OCC_LATEST_VERSION
Stewart Smith2f718e42018-05-02 01:47:29 -050048 default BR2_OCC_CUSTOM_VERSION_VALUE \
49 if BR2_OCC_CUSTOM_VERSION
50
Stewart Smith03671c02017-02-17 14:57:57 +110051endif
52