xref: /OK3568_Linux_fs/buildroot/arch/Config.in.s390x (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1choice
2	prompt "Target Architecture Variant"
3	help
4	  Specific CPU variant to use
5
6config BR2_s390x_z13
7	bool "z13"
8
9config BR2_s390x_z14
10	bool "z14"
11
12config BR2_s390x_z15
13	bool "z15"
14
15endchoice
16
17config BR2_ARCH
18	default "s390x"	if BR2_s390x
19
20config BR2_NORMALIZED_ARCH
21	default "s390"
22
23config BR2_ENDIAN
24	default "BIG"
25
26config BR2_GCC_TARGET_ARCH
27	default "arch11" if BR2_s390x_z13
28	default "arch12" if BR2_s390x_z14
29	default "arch13" if BR2_s390x_z15
30
31config BR2_READELF_ARCH_NAME
32	default "IBM S/390"	if BR2_s390x
33