On Tue, May 30, 2017 at 04:06:52PM +0000, Vladimir 'phcoder' Serbinenko wrote: > LGTM
Thanks - so am I OK to push the following?: >From bb9aa73e172ee284d9b41a0a4657154c355d6f63 Mon Sep 17 00:00:00 2001 From: Leif Lindholm <leif.lindh...@linaro.org> Date: Mon, 5 Jun 2017 10:47:35 +0100 Subject: [PATCH] arm64: don't export cache.h arm64 does not implement grub_arch_sync_dma_caches(), which causes an error when running grub-mkimage due to the missing exported symbol. Make the exporting of cache.h conditional on !COND_arm64. --- grub-core/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grub-core/Makefile.am b/grub-core/Makefile.am index 1045138..622f946 100644 --- a/grub-core/Makefile.am +++ b/grub-core/Makefile.am @@ -66,7 +66,9 @@ CLEANFILES += grub_script.yy.c grub_script.yy.h include $(srcdir)/Makefile.core.am +if !COND_arm64 KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/cache.h +endif KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/command.h KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/device.h KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/disk.h -- 2.1.4 _______________________________________________ Grub-devel mailing list Grub-devel@gnu.org https://lists.gnu.org/mailman/listinfo/grub-devel