From: Nigel Kukard Date: Thu, 1 Jan 2009 17:48:06 +0000 (-0000) Subject: * Added "generic" option to x86_64 target X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33b846773a03eb97923c0c936fee2bc4136ca405;p=buildroot.git * Added "generic" option to x86_64 target - Default to generic and not core2 --- diff --git a/target/Config.in.arch b/target/Config.in.arch index 15dab9a186..4c09d4211c 100644 --- a/target/Config.in.arch +++ b/target/Config.in.arch @@ -269,10 +269,12 @@ endchoice choice prompt "Target Architecture Variant" depends on BR2_x86_64 - default BR2_x86_64_core2 + default BR2_x86_64_generic help Specific CPU variant to use +config BR2_x86_64_generic + bool "generic" config BR2_x86_64_barcelona bool "barcelona" config BR2_x86_64_opteron_sse3 @@ -507,6 +509,7 @@ config BR2_ARCH default "sparc" if BR2_sparc default "sparc64" if BR2_sparc64 default "x86_64" if BR2_x86_64 + default "x86_64" if BR2_x86_64_generic default "x86_64" if BR2_x86_64_nocona default "x86_64" if BR2_x86_64_core2 default "x86_64" if BR2_x86_64_opteron @@ -549,6 +552,7 @@ config BR2_GCC_TARGET_TUNE default winchip2 if BR2_x86_winchip2 default c3 if BR2_x86_c3 default geode if BR2_x86_geode + default generic if BR2_x86_64_generic default nocona if BR2_x86_64_nocona default core2 if BR2_x86_64_core2 default k8 if BR2_x86_64_opteron