diff options
author | 2020-05-30 19:07:05 +0200 | |
---|---|---|
committer | 2020-06-02 08:12:55 +0200 | |
commit | 54b0276e611cdc11c78b70e3464df77f4852a92a (patch) | |
tree | fa23ba824dd5c8ec56344cfbef64bae8d188c168 | |
parent | 6cadbcbf5bbf5d584835a2d8daac5c6a91e6cb2b (diff) | |
download | buildroot-54b0276e611cdc11c78b70e3464df77f4852a92a.tar.gz buildroot-54b0276e611cdc11c78b70e3464df77f4852a92a.tar.bz2 |
boot/arm-trusted-firmware: ignore licencing check for user defined official version
The commit [1] "licensing info is only valid for v1.4" fixed the legal-info
issues when a custom ATF tarball or a version from git is used.
But we need to ignore licencing for a used defined official ATF version.
Althougt the ATF version are licensed under BSD-3-Clause, the license
file can be updated between version (for example between v1.4 and v2.0).
Ignore the licencing check if the user provide a custom official version.
[1] d1a61703f728340ec894c367398d2a3a394a3360
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
[yann.morin.1998@free.fr: use positive logic with the _LATEST option]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 36c0a0c65647bebe1050a2f9a7005fb44c24cf56)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | boot/arm-trusted-firmware/arm-trusted-firmware.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/boot/arm-trusted-firmware/arm-trusted-firmware.mk b/boot/arm-trusted-firmware/arm-trusted-firmware.mk index 27f63a87fe..37efe82630 100644 --- a/boot/arm-trusted-firmware/arm-trusted-firmware.mk +++ b/boot/arm-trusted-firmware/arm-trusted-firmware.mk @@ -19,9 +19,11 @@ else ARM_TRUSTED_FIRMWARE_SITE = $(call github,ARM-software,arm-trusted-firmware,$(ARM_TRUSTED_FIRMWARE_VERSION)) # The licensing of custom or from-git versions is unknown. # This is valid only for the official v1.4. +ifeq ($(BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_VERSION),y) ARM_TRUSTED_FIRMWARE_LICENSE = BSD-3-Clause ARM_TRUSTED_FIRMWARE_LICENSE_FILES = license.rst endif +endif ifeq ($(BR2_TARGET_ARM_TRUSTED_FIRMWARE)$(BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_VERSION),y) BR_NO_CHECK_HASH_FOR += $(ARM_TRUSTED_FIRMWARE_SOURCE) |