shairport-sync: bump to version 3.0
[buildroot-gz.git] / boot / arm-trusted-firmware / Config.in
blob2df82678643491ea10bd01559fd2d5c439225e07
1 config BR2_TARGET_ARM_TRUSTED_FIRMWARE
2         bool "ARM Trusted Firmware (ATF)"
3         depends on BR2_aarch64 && BR2_TARGET_UBOOT
4         help
5           Enable this option if you want to build the ATF for your ARM
6           based embedded device.
8           https://github.com/ARM-software/arm-trusted-firmware
10 if BR2_TARGET_ARM_TRUSTED_FIRMWARE
11 choice
12         prompt "ATF Version"
13         help
14           Select the specific ATF version you want to use
16 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_VERSION
17         bool "v1.2"
19 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL
20         bool "Custom tarball"
22 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT
23         bool "Custom Git repository"
25 endchoice
27 if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL
29 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION
30         string "URL of custom ATF tarball"
32 endif
34 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_VERSION
35         string
36         default "v1.2"          if BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_VERSION
37         default "custom"        if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL
38         default BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION \
39                                 if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT
41 if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT
43 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL
44         string "URL of custom repository"
46 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION
47         string "Custom repository version"
48         help
49           Revision to use in the typical format used by Git
50           E.G. a sha id, a tag, ..
52 endif
54 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM
55         string "ATF platform"
56         help
57           Target plaform to build for.
59 config BR2_TARGET_ARM_TRUSTED_FIRMWARE_ADDITIONAL_VARIABLES
60         string "Additional ATF build variables"
61         help
62           Additional parameters for the ATF build
63           E.G. 'DEBUG=1 LOG_LEVEL=20'
65 endif