1 // 2 // 3 // Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR> 4 // 6 // This program and the accompanying materials are licensed and made available under 8 // the terms and conditions of the BSD License that accompanies this distribution. 10 // The full text of the license may be found at 12 // http://opensource.org/licenses/bsd-license.php. 14 // 16 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 18 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 20 // 22 // 23 // 24 // 25 // Module Name: 26 // 27 // SystemComponent.vfr 28 // 29 // Abstract: 30 // 31 // Driver Setup formset. 32 // 33 // Revision History: 34 // ------------------------------------------------------------------------------ 35 // Rev Date<MM/DD/YYYY> Name Description 36 // ------------------------------------------------------------------------------ 37 38 // --*/ 39 40 form formid = SYSTEM_COMPONENT_FORM_ID, 41 42 title = STRING_TOKEN(STR_SYSTEM_COMPONENT_TITLE); 43 /* 44 oneof varid = Setup.CRIDSettings, 45 prompt = STRING_TOKEN(STR_CRID_PROMPT), 46 help = STRING_TOKEN(STR_CRID_SETTING_HELP), 47 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED; 48 option text = STRING_TOKEN(STR_CRID_0_STRING), value = 1, flags = RESET_REQUIRED; 49 option text = STRING_TOKEN(STR_CRID_1_STRING), value = 2, flags = RESET_REQUIRED; 50 option text = STRING_TOKEN(STR_CRID_2_STRING), value = 3, flags = RESET_REQUIRED; 51 endoneof; 52 */ 53 54 subtitle text = STRING_TOKEN(STR_PNP_CONFIGURATION_TITLE); 55 oneof varid = Setup.PnpSettings, 56 prompt = STRING_TOKEN(STR_PNP_SETTING_PROMPT), 57 help = STRING_TOKEN(STR_PNP_SETTING_HELP), 58 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED; 59 #if (PNP_DEBUG == 1) 60 option text = STRING_TOKEN(STR_PNP_POWER_STRING), value = 1, flags = RESET_REQUIRED; 61 option text = STRING_TOKEN(STR_PNP_PERFORMANCE_STRING), value = 2, flags = RESET_REQUIRED; 62 #endif 63 option text = STRING_TOKEN(STR_PNP_POWER_PERFORMANCE_STRING), value = 3, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; 64 option text = STRING_TOKEN(STR_PNP_POWER_PERFORMANCE_STRING_A0), value = 4, flags = 0 | RESET_REQUIRED; 65 option text = STRING_TOKEN(STR_PNP_POWER_PERFORMANCE_STRING_B0), value = 5, flags = 0 | RESET_REQUIRED; 66 endoneof; 67 68 oneof varid = Setup.CfioPnpSettings, 69 prompt = STRING_TOKEN(STR_CFIO_PNP_SETTING_PROMPT), 70 help = STRING_TOKEN(STR_CFIO_PNP_SETTING_HELP), 71 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED; 72 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = 0 | RESET_REQUIRED; 73 endoneof; 74 oneof varid = Setup.TristateLpc, 75 prompt = STRING_TOKEN(STR_TRISTATE_LPC_PROMPT), 76 help = STRING_TOKEN(STR_TRISTATE_LPC_HELP), 77 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED; 78 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = 0 | RESET_REQUIRED; 79 endoneof; 80 81 82 83 84 85 86 oneof varid = Setup.PchFSAOn, 87 prompt = STRING_TOKEN(STR_PCH_FSA_PROMPT), 88 help = STRING_TOKEN(STR_PCH_FSA_HELP), 89 option text = STRING_TOKEN(STR_OFF), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; 90 option text = STRING_TOKEN(STR_ON), value = 1, flags = RESET_REQUIRED; 91 endoneof; 92 93 94 95 endform; 96