1// 2// 3// Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR> 4// 5 6// This program and the accompanying materials are licensed and made available under 7 8// the terms and conditions of the BSD License that accompanies this distribution. 9 10// The full text of the license may be found at 11 12// http://opensource.org/licenses/bsd-license.php. 13 14// 15 16// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 18// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 20// 21 22// 23// 24// Module Name: 25// 26// Boot.vfi 27// 28// Abstract: 29// 30// Driver Setup formset. 31// 32// Revision History: 33// 34// --*/ 35 36 37form formid = BOOT_CONFIGURATION_FORM_ID, 38 39 title = STRING_TOKEN(STR_BOOT_CONFIGURATION_TITLE); 40 41 42 oneof varid = Setup.FastBoot, 43 prompt = STRING_TOKEN(STR_FAST_BOOT_PROMPT), 44 help = STRING_TOKEN(STR_FAST_BOOT_HELP), 45 option text = STRING_TOKEN(STR_DISABLE), value=0, flags= DEFAULT | RESET_REQUIRED; 46 option text = STRING_TOKEN(STR_ENABLE), value=1, flags= MANUFACTURING | RESET_REQUIRED; 47 endoneof; 48 49 oneof varid = Setup.SecureBoot, 50 prompt = STRING_TOKEN(STR_SECURITY_BOOT_PROMPT), 51 help = STRING_TOKEN(STR_SECURITY_BOOT_HELP), 52 option text = STRING_TOKEN(STR_DISABLE), value=0, flags= DEFAULT | MANUFACTURING | RESET_REQUIRED; 53 option text = STRING_TOKEN(STR_ENABLE), value=1, flags= RESET_REQUIRED; 54 endoneof; 55 56 57 oneof varid = Setup.QuietBoot, 58 prompt = STRING_TOKEN(STR_QUIETBOOT_PROMPT), 59 help = STRING_TOKEN(STR_QUIETBOOT_HELP), 60 option text = STRING_TOKEN(STR_DISABLE), value=0, flags=DEFAULT | MANUFACTURING | RESET_REQUIRED; 61 option text = STRING_TOKEN(STR_ENABLE), value=1, flags=0 | RESET_REQUIRED; 62 endoneof; 63 64 65 66 oneof varid = Setup.LogBootTime, 67 prompt = STRING_TOKEN(STR_LOG_BOOT_TIME_PROMPT), 68 help = STRING_TOKEN(STR_LOG_BOOT_TIME_HELP), 69 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = 0 | RESET_REQUIRED; 70 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; 71 endoneof; 72 73 suppressif ideqval Setup.LogBootTime == 0x00; 74 text 75 help = STRING_TOKEN(STR_NULL_STRING), 76 text = STRING_TOKEN(STR_LOG_BOOT_TIME_RECORD), 77 text = STRING_TOKEN(STR_LOG_BOOT_TIME_VALUE), 78 flags = 0, 79 key = 0; 80 endif; 81 82endform; 83 84 85 86 87