VirtualBox

Ignore:
Timestamp:
Oct 29, 2015 4:30:44 AM (9 years ago)
Author:
vboxsync
Message:

EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .

Location:
trunk/src/VBox/Devices/EFI/Firmware
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware

  • trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/SecureBootConfigDxe/SecureBootConfig.vfr

    r58464 r58466  
    33
    44Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>
    5 This program and the accompanying materials 
    6 are licensed and made available under the terms and conditions of the BSD License 
    7 which accompanies this distribution.  The full text of the license may be found at 
     5This program and the accompanying materials
     6are licensed and made available under the terms and conditions of the BSD License
     7which accompanies this distribution.  The full text of the license may be found at
    88http://opensource.org/licenses/bsd-license.php
    99
    10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 
     10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
    1111WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
    1212
     
    2525    name  = SECUREBOOT_CONFIGURATION,
    2626    guid  = SECUREBOOT_CONFIG_FORM_SET_GUID;
    27  
     27
    2828  //
    2929  // ##1 Form "Secure Boot Configuration"
     
    3333
    3434    subtitle text = STRING_TOKEN(STR_NULL);
    35    
     35
    3636    //
    3737    // Define of Check Box: Attempt Secure Boot
     
    4242              help     = STRING_TOKEN(STR_NULL),
    4343      endcheckbox;
    44     endif; 
    45    
     44    endif;
     45
    4646    //
    4747    // Display of Check Box: Attempt Secure Boot
     
    5555    endcheckbox;
    5656    endif;
    57    
     57
    5858    //
    5959    // Display of Oneof: 'Secure Boot Mode'
    6060    //
    6161    oneof varid  = SECUREBOOT_CONFIGURATION.SecureBootMode,
    62           questionid = KEY_SECURE_BOOT_MODE,     
     62          questionid = KEY_SECURE_BOOT_MODE,
    6363          prompt = STRING_TOKEN(STR_SECURE_BOOT_MODE_PROMPT),
    6464          help   = STRING_TOKEN(STR_SECURE_BOOT_MODE_HELP),
     
    6767          option text = STRING_TOKEN(STR_CUSTOM_MODE),      value = SECURE_BOOT_MODE_CUSTOM,   flags = 0;
    6868    endoneof;
    69    
     69
    7070    //
    7171    //
     
    8282    endif;
    8383  endform;
    84  
     84
    8585  //
    8686  // ##2 Form: 'Custom Secure Boot Options'
     
    8888  form formid = FORMID_SECURE_BOOT_OPTION_FORM,
    8989    title  = STRING_TOKEN(STR_SECURE_BOOT_OPTION_TITLE);
    90    
    91     subtitle text = STRING_TOKEN(STR_NULL);
    92    
     90
     91    subtitle text = STRING_TOKEN(STR_NULL);
     92
    9393    goto FORMID_SECURE_BOOT_PK_OPTION_FORM,
    9494         prompt = STRING_TOKEN(STR_SECURE_BOOT_PK_OPTION),
     
    9696         flags  = INTERACTIVE,
    9797         key    = KEY_SECURE_BOOT_PK_OPTION;
    98        
    99     subtitle text = STRING_TOKEN(STR_NULL);
    100    
     98
     99    subtitle text = STRING_TOKEN(STR_NULL);
     100
    101101    goto FORMID_SECURE_BOOT_KEK_OPTION_FORM,
    102102         prompt = STRING_TOKEN(STR_SECURE_BOOT_KEK_OPTION),
     
    104104         flags  = INTERACTIVE,
    105105         key    = KEY_SECURE_BOOT_KEK_OPTION;
    106        
    107     subtitle text = STRING_TOKEN(STR_NULL);
    108    
     106
     107    subtitle text = STRING_TOKEN(STR_NULL);
     108
    109109    goto FORMID_SECURE_BOOT_DB_OPTION_FORM,
    110110         prompt = STRING_TOKEN(STR_SECURE_BOOT_DB_OPTION),
     
    112112         flags  = INTERACTIVE,
    113113         key    = KEY_SECURE_BOOT_DB_OPTION;
    114    
    115     subtitle text = STRING_TOKEN(STR_NULL);
    116    
     114
     115    subtitle text = STRING_TOKEN(STR_NULL);
     116
    117117    goto FORMID_SECURE_BOOT_DBX_OPTION_FORM,
    118118         prompt = STRING_TOKEN(STR_SECURE_BOOT_DBX_OPTION),
     
    122122
    123123  endform;
    124  
     124
    125125  //
    126126  // ##3 Form: 'PK Options'
     
    128128  form formid = FORMID_SECURE_BOOT_PK_OPTION_FORM,
    129129    title  = STRING_TOKEN(STR_SECURE_BOOT_PK_OPTION);
    130    
    131     subtitle text = STRING_TOKEN(STR_NULL);
    132    
     130
     131    subtitle text = STRING_TOKEN(STR_NULL);
     132
    133133    //
    134134    // Define of Check Box: 'Delete PK'
     
    140140      endcheckbox;
    141141    endif;
    142    
     142
    143143    grayoutif ideqval SECUREBOOT_CONFIGURATION.HasPk == 1;
    144144    goto FORMID_ENROLL_PK_FORM,
     
    148148         key    = KEY_ENROLL_PK;
    149149    endif;
    150    
    151     subtitle text = STRING_TOKEN(STR_NULL);
    152    
    153     //
    154     // Display of Check Box: 'Delete Pk' 
     150
     151    subtitle text = STRING_TOKEN(STR_NULL);
     152
     153    //
     154    // Display of Check Box: 'Delete Pk'
    155155    //
    156156    grayoutif ideqval SECUREBOOT_CONFIGURATION.HideSecureBoot == 1;
    157157    checkbox varid = SECUREBOOT_CONFIGURATION.DeletePk,
    158158          questionid = KEY_SECURE_BOOT_DELETE_PK,
    159           prompt = STRING_TOKEN(STR_DELETE_PK),         
     159          prompt = STRING_TOKEN(STR_DELETE_PK),
    160160          help   = STRING_TOKEN(STR_DELETE_PK_HELP),
    161161          flags  = INTERACTIVE,
     
    163163    endif;
    164164  endform;
    165  
     165
    166166  //
    167167  // ##4 Form: 'Enroll PK'
     
    169169  form formid = FORMID_ENROLL_PK_FORM,
    170170    title  = STRING_TOKEN(STR_ENROLL_PK);
    171    
     171
    172172    subtitle text = STRING_TOKEN(STR_NULL);
    173173
     
    178178         key = SECUREBOOT_ADD_PK_FILE_FORM_ID;
    179179  endform;
    180  
     180
    181181  //
    182182  // ##5 Form: 'KEK Options'
     
    186186
    187187    //
    188     // Display of 'Enroll KEK' 
     188    // Display of 'Enroll KEK'
    189189    //
    190190    goto FORMID_ENROLL_KEK_FORM,
     
    192192         help   = STRING_TOKEN(STR_ENROLL_KEK_HELP),
    193193         flags  = INTERACTIVE;
    194    
    195     subtitle text = STRING_TOKEN(STR_NULL);     
    196    
    197     //
    198     // Display of 'Delete KEK' 
     194
     195    subtitle text = STRING_TOKEN(STR_NULL);
     196
     197    //
     198    // Display of 'Delete KEK'
    199199    //
    200200    goto FORMID_DELETE_KEK_FORM,
     
    203203         flags  = INTERACTIVE,
    204204         key    = KEY_DELETE_KEK;
    205  
    206     subtitle text = STRING_TOKEN(STR_NULL);   
    207   endform;
    208 
    209   //
    210   // ##6 Form: 'Enroll KEK' 
     205
     206    subtitle text = STRING_TOKEN(STR_NULL);
     207  endform;
     208
     209  //
     210  // ##6 Form: 'Enroll KEK'
    211211  //
    212212  form formid = FORMID_ENROLL_KEK_FORM,
     
    243243      flags  = INTERACTIVE,
    244244      key    = KEY_VALUE_SAVE_AND_EXIT_KEK;
    245  
     245
    246246    goto FORMID_SECURE_BOOT_OPTION_FORM,
    247247      prompt = STRING_TOKEN(STR_NO_SAVE_AND_EXIT),
     
    254254  //
    255255  // ##7 Form: 'Delete KEK'
    256   // 
     256  //
    257257  form formid = FORMID_DELETE_KEK_FORM,
    258258    title  = STRING_TOKEN(STR_DELETE_KEK_TITLE);
     
    260260    label LABEL_KEK_DELETE;
    261261    label LABEL_END;
    262          
    263     subtitle text = STRING_TOKEN(STR_NULL);
    264    
     262
     263    subtitle text = STRING_TOKEN(STR_NULL);
     264
    265265  endform;
    266266
     
    285285    flags  = INTERACTIVE,
    286286    key    = SECUREBOOT_DELETE_SIGNATURE_FROM_DB;
    287    
     287
    288288  endform;
    289289
     
    320320    label LABEL_END;
    321321    subtitle text = STRING_TOKEN(STR_NULL);
    322    
     322
    323323  endform;
    324324
     
    332332    label LABEL_END;
    333333    subtitle text = STRING_TOKEN(STR_NULL);
    334    
     334
    335335  endform;
    336336
     
    371371         flags  = INTERACTIVE,
    372372         key    = KEY_VALUE_SAVE_AND_EXIT_DB;
    373  
     373
    374374    goto FORMID_SECURE_BOOT_OPTION_FORM,
    375375         prompt = STRING_TOKEN(STR_NO_SAVE_AND_EXIT),
     
    416416         flags  = INTERACTIVE,
    417417         key    = KEY_VALUE_SAVE_AND_EXIT_DBX;
    418  
     418
    419419    goto FORMID_SECURE_BOOT_OPTION_FORM,
    420420         prompt = STRING_TOKEN(STR_NO_SAVE_AND_EXIT),
     
    434434       label LABEL_END;
    435435  endform;
    436  
     436
    437437  //
    438438  // File Explorer for KEK
     
    474474    label SECUREBOOT_ADD_PK_FILE_FORM_ID;
    475475    label LABEL_END;
    476    
     476
    477477    subtitle text = STRING_TOKEN(STR_NULL);
    478478
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette