Home | History | Annotate | Download | only in BootMngr
      1 ///** @file
      2 //  
      3 //    Browser formset.
      4 //  
      5 //  Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
      6 //  This program and the accompanying materials
      7 //  are licensed and made available under the terms and conditions of the BSD License
      8 //  which accompanies this distribution.  The full text of the license may be found at
      9 //  http://opensource.org/licenses/bsd-license.php
     10 //  
     11 //  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     12 //  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     13 //  
     14 //**/
     15 
     16 #include <Guid/BdsHii.h>
     17 
     18 #define BOOT_MANAGER_FORM_ID     0x1000
     19 
     20 #define LABEL_BOOT_OPTION        0x00
     21 #define LABEL_BOOT_OPTION_END    0x01
     22 
     23 #define BOOT_MANAGER_CLASS       0x00
     24 #define BOOT_MANAGER_SUBCLASS    0x00
     25 
     26 formset
     27   guid      = BOOT_MANAGER_FORMSET_GUID,
     28   title     = STRING_TOKEN(STR_BM_BANNER),
     29   help      = STRING_TOKEN(STR_LAST_STRING),
     30   classguid = BOOT_MANAGER_FORMSET_GUID,
     31 
     32   form formid = BOOT_MANAGER_FORM_ID,
     33        title  = STRING_TOKEN(STR_BM_BANNER);
     34 
     35     subtitle text = STRING_TOKEN(STR_LAST_STRING);
     36     subtitle text = STRING_TOKEN(STR_BOOT_OPTION_BANNER);
     37     subtitle text = STRING_TOKEN(STR_LAST_STRING);
     38 
     39     //
     40     // This is where we will dynamically add choices for the Boot Manager
     41     //
     42     label LABEL_BOOT_OPTION;
     43     label LABEL_BOOT_OPTION_END;
     44 
     45     subtitle text = STRING_TOKEN(STR_LAST_STRING);
     46     subtitle text = STRING_TOKEN(STR_HELP_FOOTER);
     47 
     48   endform;
     49 
     50 endformset;
     51