diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2015-05-02 11:05:02 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-05-02 15:11:01 +0200 |
commit | c778942dbd5013aac03ff547beaa682ce185b77d (patch) | |
tree | 95883b2eaf3ca91a0e46987a087579d9f43e1819 | |
parent | ee2509fccf3a7c763155a17916c6f6eb42aecdd3 (diff) | |
download | buildroot-c778942dbd5013aac03ff547beaa682ce185b77d.tar.gz buildroot-c778942dbd5013aac03ff547beaa682ce185b77d.zip |
boot/barebox: do not check hash for custom versions
As we recently did for U-Boot, disable checking hashes for custom
versions of barebox.
Note that we currently have no hash file for barebox, but avoiding the
check will already be in place when we do add it.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | boot/barebox/barebox.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk index 54f52bb2a4..764791d35f 100644 --- a/boot/barebox/barebox.mk +++ b/boot/barebox/barebox.mk @@ -11,6 +11,7 @@ ifeq ($(BAREBOX_VERSION),custom) BAREBOX_TARBALL = $(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_TARBALL_LOCATION)) BAREBOX_SITE = $(patsubst %/,%,$(dir $(BAREBOX_TARBALL))) BAREBOX_SOURCE = $(notdir $(BAREBOX_TARBALL)) +BR_NO_CHECK_HASH_FOR += $(BAREBOX_SOURCE) else ifeq ($(BR2_TARGET_BAREBOX_CUSTOM_GIT),y) BAREBOX_SITE = $(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_GIT_REPO_URL)) BAREBOX_SITE_METHOD = git @@ -18,6 +19,9 @@ else # Handle stable official Barebox versions BAREBOX_SOURCE = barebox-$(BAREBOX_VERSION).tar.bz2 BAREBOX_SITE = http://www.barebox.org/download +ifeq ($(BR2_TARGET_BAREBOX_CUSTOM_VERSION),y) +BR_NO_CHECK_HASH_FOR += $(BAREBOX_SOURCE) +endif endif BAREBOX_DEPENDENCIES = host-lzop |