From: Krzysztof Kozlowski Date: Wed, 29 Aug 2018 07:32:23 +0000 (+0200) Subject: powerpc/boot: Fix missing crc32poly.h when building with KERNEL_XZ X-Git-Tag: archive/raspbian/5.10.209-2+rpi1^2~47 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c910d5b42958ce1921423f67db2aed87b52b307f;p=linux.git powerpc/boot: Fix missing crc32poly.h when building with KERNEL_XZ Origin: https://patchwork.ozlabs.org/patch/963258/ After commit faa16bc404d7 ("lib: Use existing define with polynomial") the lib/xz/xz_crc32.c includes a header from include/linux directory thus any other user of this code should define proper include path. This fixes the build error on powerpc with CONFIG_KERNEL_XZ: In file included from ../arch/powerpc/boot/../../../lib/decompress_unxz.c:233:0, from ../arch/powerpc/boot/decompress.c:42: ../arch/powerpc/boot/../../../lib/xz/xz_crc32.c:18:29: fatal error: linux/crc32poly.h: No such file or directory Reported-by: Michal Kubecek Fixes: faa16bc404d7 ("lib: Use existing define with polynomial") Signed-off-by: Krzysztof Kozlowski Reported-by: kbuild test robot Reported-by: Meelis Roos Tested-by: Michal Kubecek Gbp-Pq: Topic bugfix/powerpc Gbp-Pq: Name powerpc-boot-fix-missing-crc32poly.h-when-building-with-kernel_xz.patch --- diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 8b78eba755f..e26ad41fdb0 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -66,7 +66,7 @@ ifeq ($(call cc-option-yn, -fstack-protector),y) BOOTCFLAGS += -fno-stack-protector endif -BOOTCFLAGS += -I$(objtree)/$(obj) -I$(srctree)/$(obj) +BOOTCFLAGS += -I$(objtree)/$(obj) -I$(srctree)/$(obj) -I$(srctree)/include DTC_FLAGS ?= -p 1024