The patch titled uml: fix processor selection to exclude unsupported processors and features has been added to the -mm tree. Its filename is uml-fix-processor-selection-to-exclude-unsupported-processors-and-features.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: uml: fix processor selection to exclude unsupported processors and features From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Makes UML compile on any possible processor choice. The two problems were: *) x86 code, when 386 is selected, checks at runtime boot_cpuflags, which we do not have. *) 3Dnow support for memcpy() et al. does not compile currently and fixing this is not trivial, so simply disable it; with this change, if one selects MK7 UML compiles (while it did not). Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/Kconfig.cpu | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN arch/i386/Kconfig.cpu~uml-fix-processor-selection-to-exclude-unsupported-processors-and-features arch/i386/Kconfig.cpu --- a/arch/i386/Kconfig.cpu~uml-fix-processor-selection-to-exclude-unsupported-processors-and-features +++ a/arch/i386/Kconfig.cpu @@ -7,6 +7,7 @@ choice config M386 bool "386" + depends on !UML ---help--- This is the processor type of your CPU. This information is used for optimizing purposes. In order to compile a kernel that can run on @@ -301,7 +302,7 @@ config X86_USE_PPRO_CHECKSUM config X86_USE_3DNOW bool - depends on MCYRIXIII || MK7 || MGEODE_LX + depends on (MCYRIXIII || MK7 || MGEODE_LX) && !UML default y config X86_OOSTORE _ Patches currently in -mm which might be from blaisorblade@xxxxxxxx are uml-fix-compilation-options-for-user_objs.patch uml-revert-wrong-patch.patch uml-correct-removal-of-pte_mkexec.patch uml-readd-forgot-prototype.patch uml-make-tt-mode-compile-after-setjmp-related-changes.patch uml-make-uml_setjmp-always-safe.patch uml-fix-processor-selection-to-exclude-unsupported-processors-and-features.patch uml-fix-uname-under-setarch-i386.patch uml-declare-in-kconfig-our-partial-lockdep-support.patch uml-allow-using-again-x86-x86_64-crypto-code.patch uml-asm-offsets-duplication-removal.patch uml-remove-duplicate-export.patch uml-deprecate-config_mode_tt.patch uml-allow-finer-tuning-for-host-vmsplit-setting.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