068731973fea4333af7af200588868c6dc640bfc
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / arch / Config.in.xtensa
1 choice
2         prompt "Target Architecture Variant"
3         depends on BR2_xtensa
4         default BR2_xtensa_fsf
5 config BR2_XTENSA_CUSTOM
6         bool "Custom Xtensa processor configuration"
7 config BR2_xtensa_fsf
8         bool "fsf - Default configuration"
9 endchoice
10
11 config BR2_XTENSA_CUSTOM_NAME
12         string "Custom Xtensa processor configuration name"
13         depends on BR2_XTENSA_CUSTOM
14         default ""
15         help
16           Name given to a custom Xtensa processor configuration.
17
18 config BR2_XTENSA_CORE_NAME
19         string
20         default BR2_XTENSA_CUSTOM_NAME  if BR2_XTENSA_CUSTOM
21         default ""                      if BR2_xtensa_fsf
22
23 config BR2_XTENSA_OVERLAY_DIR
24         string "Overlay directory for custom configuration"
25         depends on BR2_XTENSA_CUSTOM
26         default ""
27         help
28           Provide the directory path that contains the overlay file
29           for a custom processor configuration. The path is relative
30           to the top directory of buildroot.
31           These overlay files are tar packages with updated configuration
32           files for various toolchain packages and Xtensa processor
33           configurations. They are provided by the processor vendor or
34           directly from Tensilica.
35
36 choice
37         prompt "Target Architecture Endianness"
38         depends on BR2_XTENSA_CUSTOM
39         default BR2_XTENSA_LITTLE_ENDIAN
40
41 config BR2_XTENSA_LITTLE_ENDIAN
42         bool "Little endian"
43
44 config BR2_XTENSA_BIG_ENDIAN
45         bool "Big endian"
46
47 endchoice
48
49 config BR2_ENDIAN
50         default "LITTLE"        if BR2_XTENSA_LITTLE_ENDIAN
51         default "BIG"           if BR2_xtensa_fsf || BR2_XTENSA_BIG_ENDIAN
52
53 config BR2_ARCH
54         default "xtensa"        if BR2_xtensa
55
56 config BR2_ARCH_HAS_ATOMICS
57         default y