diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-03-21 01:07:09 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-11 14:27:42 +0200 |
commit | 41b06126c92110f3ea736d3f43d66f57a2f58e1f (patch) | |
tree | 8d91c873c02782e72c1f902ead63c300180a0e54 | |
parent | 291e7b5ac274cd3efcc9e8db14c56ba9393a4695 (diff) | |
download | buildroot-41b06126c92110f3ea736d3f43d66f57a2f58e1f.tar.gz buildroot-41b06126c92110f3ea736d3f43d66f57a2f58e1f.zip |
at91bootstrap3: exclude from hash when downloading from git
Since we will enable hash checks for git downloads soon, the hash check
for the custom git download should be disabled.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | boot/at91bootstrap3/at91bootstrap3.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/at91bootstrap3/at91bootstrap3.mk b/boot/at91bootstrap3/at91bootstrap3.mk index 32732f4758..685be5bbd7 100644 --- a/boot/at91bootstrap3/at91bootstrap3.mk +++ b/boot/at91bootstrap3/at91bootstrap3.mk @@ -9,6 +9,7 @@ AT91BOOTSTRAP3_VERSION = $(call qstrip,$(BR2_TARGET_AT91BOOTSTRAP3_VERSION)) ifeq ($(BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_GIT),y) AT91BOOTSTRAP3_SITE = $(call qstrip,$(BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_REPO_URL)) AT91BOOTSTRAP3_SITE_METHOD = git +BR_NO_CHECK_HASH_FOR += $(AT91BOOTSTRAP3_SOURCE) else AT91BOOTSTRAP3_SITE = $(call github,linux4sam,at91bootstrap,$(AT91BOOTSTRAP3_VERSION)) endif |