The patch titled Subject: um: fix build error and kconfig for i386 has been added to the -mm tree. Its filename is um-fix-build-error-and-kconfig-for-i386.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/um-fix-build-error-and-kconfig-for-i386.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/um-fix-build-error-and-kconfig-for-i386.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Mickaël Salaün <mic@xxxxxxxxxxx> Subject: um: fix build error and kconfig for i386 Fix build error by selecting COREDUMP when X86_32 is selected: arch/x86/um/built-in.o: In function `elf_core_write_extra_phdrs': (.text+0x3e62): undefined reference to `dump_emit' arch/x86/um/built-in.o: In function `elf_core_write_extra_data': (.text+0x3eef): undefined reference to `dump_emit' Fixes: 5d2acfc7b974 ("kconfig: make allnoconfig disable options behind EMBEDDED and EXPERT") Signed-off-by: Mickaël Salaün <mic@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/um/Kconfig | 1 + 1 file changed, 1 insertion(+) diff -puN arch/x86/um/Kconfig~um-fix-build-error-and-kconfig-for-i386 arch/x86/um/Kconfig --- a/arch/x86/um/Kconfig~um-fix-build-error-and-kconfig-for-i386 +++ a/arch/x86/um/Kconfig @@ -26,6 +26,7 @@ config X86_32 select CLONE_BACKWARDS select OLD_SIGSUSPEND3 select OLD_SIGACTION + select COREDUMP config X86_64 def_bool 64BIT _ Patches currently in -mm which might be from mic@xxxxxxxxxxx are um-fix-build-error-and-kconfig-for-i386.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html