diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2019-02-16 19:34:26 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2019-02-17 15:22:42 +0100 |
commit | 3ae8dab9e91055b6f674b0287bcb8b1aa90d16e0 (patch) | |
tree | d7f05abc6ac4e90dbd12f35fe8f090b59c5d80b1 | |
parent | 63739c5c25805816a20e7073e837e18854e83ada (diff) | |
download | buildroot-3ae8dab9e91055b6f674b0287bcb8b1aa90d16e0.tar.gz buildroot-3ae8dab9e91055b6f674b0287bcb8b1aa90d16e0.zip |
linux: don't check hashes for user-supplied patches
We have virtually no way to know the hashes for user-supplied patches,
so we should just ignore them.
Reported-by: Simon van der Veldt <simon.vanderveldt@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Peter Korsgaard <peter@korsgaard.com>
Tested-by: Simon van der Veldt <simon.vanderveldt@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | linux/linux.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index 8c21bad067..2b5d096e14 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -55,6 +55,9 @@ endif LINUX_PATCHES = $(call qstrip,$(BR2_LINUX_KERNEL_PATCH)) +# We have no way to know the hashes for user-supplied patches. +BR_NO_CHECK_HASH_FOR += $(notdir $(LINUX_PATCHES)) + # We rely on the generic package infrastructure to download and apply # remote patches (downloaded from ftp, http or https). For local # patches, we can't rely on that infrastructure, because there might |