Control: tag -1 patch upstream fixed-upstream On Mon, 2013-03-04 at 08:13 +0100, Andreas Glaeser wrote: [...] > When I realised, that this actually was a disk-full-issue, I downgraded the > bug to > 'wishlist' and thought I was going to close it, when it was verified, but now > I thin the > real problem is that during the build-process the user is not informed, that > there is > actually no disk space left, but one gets quite misleading error messages. [...]
No, the original error message was correct. I can reproduce it by enabling both these options in 3.2: CONFIG_MK7=y CONFIG_EFI_STUB=y Fix attached. Ben. -- Ben Hutchings Always try to do things in chronological order; it's less confusing that way.
From 0f905a43ce955b638139bd84486194770a6a2c08 Mon Sep 17 00:00:00 2001 From: Matt Fleming <matt.flem...@intel.com> Date: Tue, 20 Nov 2012 13:07:46 +0000 Subject: [PATCH] x86, efi: Fix processor-specific memcpy() build error Building for Athlon/Duron/K7 results in the following build error, arch/x86/boot/compressed/eboot.o: In function `__constant_memcpy3d': eboot.c:(.text+0x385): undefined reference to `_mmx_memcpy' arch/x86/boot/compressed/eboot.o: In function `efi_main': eboot.c:(.text+0x1a22): undefined reference to `_mmx_memcpy' because the boot stub code doesn't link with the kernel proper, and therefore doesn't have access to the 3DNow version of memcpy. So, follow the example of misc.c and #undef memcpy so that we use the version provided by misc.c. See https://bugzilla.kernel.org/show_bug.cgi?id=50391 Reported-by: Al Viro <v...@zeniv.linux.org.uk> Reported-by: Ryan Underwood <neme...@icequake.net> Cc: H. Peter Anvin <h...@zytor.com> Cc: sta...@vger.kernel.org Signed-off-by: Matt Fleming <matt.flem...@intel.com> --- arch/x86/boot/compressed/eboot.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c index c760e07..e87b0ca 100644 --- a/arch/x86/boot/compressed/eboot.c +++ b/arch/x86/boot/compressed/eboot.c @@ -12,6 +12,8 @@ #include <asm/setup.h> #include <asm/desc.h> +#undef memcpy /* Use memcpy from misc.c */ + #include "eboot.h" static efi_system_table_t *sys_table;
signature.asc
Description: This is a digitally signed message part