diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf index 6685d07ab2..53e8e92e6d 100644 --- a/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf | |||
@@ -14,8 +14,16 @@ PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" | |||
14 | PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" | 14 | PREFERRED_PROVIDER_virtual/kernel ?= "{{=preferred_kernel}}" |
15 | PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" | 15 | PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%" |
16 | 16 | ||
17 | {{ input type:"choicelist" name:"tunefile" prio:"40" msg:"Which machine tuning would you like to use?" default:"tune_core2" }} | ||
18 | {{ input type:"choice" val:"tune_core2" msg:"Core2 tuning optimizations" }} | ||
19 | {{ input type:"choice" val:"tune_corei7" msg:"Corei7 tuning optimizations" }} | ||
20 | {{ if tunefile == "tune_core2": }} | ||
17 | DEFAULTTUNE ?= "core2-64" | 21 | DEFAULTTUNE ?= "core2-64" |
18 | require conf/machine/include/tune-core2.inc | 22 | require conf/machine/include/tune-core2.inc |
23 | {{ if tunefile == "tune_corei7": }} | ||
24 | DEFAULTTUNE ?= "corei7-64" | ||
25 | require conf/machine/include/tune-corei7.inc | ||
26 | |||
19 | require conf/machine/include/x86-base.inc | 27 | require conf/machine/include/x86-base.inc |
20 | 28 | ||
21 | MACHINE_FEATURES += "wifi efi pcbios" | 29 | MACHINE_FEATURES += "wifi efi pcbios" |