From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 63CBF21CAD9BD for ; Mon, 3 Jul 2017 01:53:27 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jul 2017 01:55:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,302,1496127600"; d="scan'208";a="281508976" Received: from zwei4-mobl.ccr.corp.intel.com ([10.239.198.30]) by fmsmga004.fm.intel.com with ESMTP; 03 Jul 2017 01:55:01 -0700 From: zwei4 To: edk2-devel@lists.01.org Date: Mon, 3 Jul 2017 16:54:32 +0800 Message-Id: <20170703085433.22288-3-david.wei@intel.com> X-Mailer: git-send-email 2.11.0.windows.1 In-Reply-To: <20170703085433.22288-1-david.wei@intel.com> References: <20170703085433.22288-1-david.wei@intel.com> Subject: [Patch][edk2-platforms/devel-MinnowBoard3-UDK2017 3/4]Setup Change. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2017 08:53:27 -0000 Change default values of several setup options. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: zwei4 --- .../Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi | 4 ++-- .../Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi index fe6ba6814..5d5f305f8 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 = RESET_REQUIRED; - option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = MANUFACTURING |DEFAULT | RESET_REQUIRED; + option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING |DEFAULT | RESET_REQUIRED; + option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED; endoneof; endif; diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi index f2a09c236..9290c607c 100644 --- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi +++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi @@ -3010,8 +3010,8 @@ form formid = HDAUDIO_OPTIONS_FORM_ID, oneof varid = Setup.ScHdAudioIoBufferOwnership, prompt = STRING_TOKEN(STR_HDA_IO_BUFF_PROMPT), help = STRING_TOKEN(STR_HDA_IO_BUFF_HELP), - option text = STRING_TOKEN(STR_HDA_HDALINK), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; - option text = STRING_TOKEN(STR_HDA_I2S), value = 3, flags = RESET_REQUIRED; + option text = STRING_TOKEN(STR_HDA_HDALINK), value = 0, flags = RESET_REQUIRED; + option text = STRING_TOKEN(STR_HDA_I2S), value = 3, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; endoneof; oneof varid = Setup.ScHdAudioBiosCfgLockDown, -- 2.11.0.windows.1