yocto-bsp: add i586 option for i386

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
Tom Zanussi
2012-08-06 16:27:35 -05:00
committed by Richard Purdie
parent 1b9306705c
commit 3e632506c2

View File

@@ -9,12 +9,15 @@ PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}"
PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%"
{{ input type:"choicelist" name:"tunefile" prio:"40" msg:"Which machine tuning would you like to use?" default:"tune_core2" }}
{{ input type:"choice" val:"tune_i586" msg:"i586 tuning optimizations" }}
{{ input type:"choice" val:"tune_atom" msg:"Atom tuning optimizations" }}
{{ input type:"choice" val:"tune_core2" msg:"Core2 tuning optimizations" }}
{{ if tunefile == "tune_i586": }}
require conf/machine/include/tune-i586.inc
{{ if tunefile == "tune_atom": }}
include conf/machine/include/tune-atom.inc
require conf/machine/include/tune-atom.inc
{{ if tunefile == "tune_core2": }}
include conf/machine/include/tune-core2.inc
require conf/machine/include/tune-core2.inc
require conf/machine/include/ia32-base.inc