diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-08-06 16:27:35 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-25 14:47:05 +0100 |
commit | b8e6eb60b7a91da18abdf742366159b895c87bb6 (patch) | |
tree | 9521585224ed5843ab5a1843a7786a20a45c42b4 /scripts/lib/bsp | |
parent | 10ffef358e185a04ce93cf8ce51bfab9f830fef4 (diff) | |
download | poky-b8e6eb60b7a91da18abdf742366159b895c87bb6.tar.gz |
yocto-bsp: add i586 option for i386
(From meta-yocto rev: e5bc15354dccd7ecff3cc61af4299befb9d2bc86)
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp')
-rw-r--r-- | scripts/lib/bsp/substrate/target/arch/i386/conf/machine/{{=machine}}.conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/i386/conf/machine/{{=machine}}.conf index ab491b26a6..100c68cc46 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/conf/machine/{{=machine}}.conf +++ b/scripts/lib/bsp/substrate/target/arch/i386/conf/machine/{{=machine}}.conf | |||
@@ -9,12 +9,15 @@ PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" | |||
9 | PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" | 9 | PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" |
10 | 10 | ||
11 | {{ input type:"choicelist" name:"tunefile" prio:"40" msg:"Which machine tuning would you like to use?" default:"tune_core2" }} | 11 | {{ input type:"choicelist" name:"tunefile" prio:"40" msg:"Which machine tuning would you like to use?" default:"tune_core2" }} |
12 | {{ input type:"choice" val:"tune_i586" msg:"i586 tuning optimizations" }} | ||
12 | {{ input type:"choice" val:"tune_atom" msg:"Atom tuning optimizations" }} | 13 | {{ input type:"choice" val:"tune_atom" msg:"Atom tuning optimizations" }} |
13 | {{ input type:"choice" val:"tune_core2" msg:"Core2 tuning optimizations" }} | 14 | {{ input type:"choice" val:"tune_core2" msg:"Core2 tuning optimizations" }} |
15 | {{ if tunefile == "tune_i586": }} | ||
16 | require conf/machine/include/tune-i586.inc | ||
14 | {{ if tunefile == "tune_atom": }} | 17 | {{ if tunefile == "tune_atom": }} |
15 | include conf/machine/include/tune-atom.inc | 18 | require conf/machine/include/tune-atom.inc |
16 | {{ if tunefile == "tune_core2": }} | 19 | {{ if tunefile == "tune_core2": }} |
17 | include conf/machine/include/tune-core2.inc | 20 | require conf/machine/include/tune-core2.inc |
18 | 21 | ||
19 | require conf/machine/include/ia32-base.inc | 22 | require conf/machine/include/ia32-base.inc |
20 | 23 | ||