diff options
author | tsrytkon <teemu.s.rytkonen@intel.com> | 2018-02-07 11:50:49 -0800 |
---|---|---|
committer | zwei4 <david.wei@intel.com> | 2018-02-13 14:11:26 +0800 |
commit | d0adfa023b9d9d2e2b0c4c1e4e60e620bb1d227d (patch) | |
tree | ba9fb7a8397b77d29d32e69aac2f865b5c8e0bb7 | |
parent | c8c94805d7bf3d2c3c833a0a5e843b8cb4a26d79 (diff) | |
download | edk2-platforms-d0adfa023b9d9d2e2b0c4c1e4e60e620bb1d227d.tar.xz |
Enable Turbo on CpuPower default configuration
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: tsrytkon <teemu.s.rytkonen@intel.com>
-rw-r--r-- | Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi index 9deea25341..0bedbc5fa1 100644 --- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi +++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi @@ -40,8 +40,8 @@ form formid = CPU_PWR_CONFIGURATION_FORM_ID, oneof varid = Setup.TurboModeEnable,
prompt = STRING_TOKEN(STR_PROCESSOR_TURBO_MODE),
help = STRING_TOKEN(STR_PROCESSOR_TURBO_MODE_HELP),
- option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING |DEFAULT | RESET_REQUIRED;
- option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = MANUFACTURING |DEFAULT | RESET_REQUIRED;
endoneof;
endif;
|