blob: a2d6aa37ea9c2d0e566884e8a1d2c1a5a3729041 [file] [log] [blame]
Klaus Heinrich Kiwib64ca282020-05-12 14:42:44 -03001
2menuconfig BR2_PACKAGE_PPE42_TOOLCHAIN
3 bool "ppe42-toolchain"
4 default y if (BR2_OPENPOWER_POWER9)
5 help
6 Build the PPE42 toolchain required to build the
7 POWER9 firmware for OCC, SBE and HCODE
8
9if BR2_PACKAGE_PPE42_TOOLCHAIN
10
11choice
12 prompt "PPE42 Toolchain Type"
13 help
14 Select whether to build the PPE42 toolchain or
15 provide an external one
16
17source "$BR2_EXTERNAL_OP_BUILD_PATH/package/ppe42-gcc/Config.in"
18source "$BR2_EXTERNAL_OP_BUILD_PATH/package/ppe42-toolchain-external/Config.in"
19
20endchoice
21
22if BR2_PACKAGE_HOST_PPE42_GCC
23source "$BR2_EXTERNAL_OP_BUILD_PATH/package/ppe42-binutils/Config.in"
24endif
25
Klaus Heinrich Kiwidc4a86f2020-05-11 16:29:14 -030026config BR2_PACKAGE_HAS_PPE42_TOOLCHAIN
27 bool
28
29config BR2_PACKAGE_PROVIDES_PPE42_TOOLCHAIN
30 depends on BR2_PACKAGE_HAS_PPE42_TOOLCHAIN
31 string
Klaus Heinrich Kiwib64ca282020-05-12 14:42:44 -030032
33endif