]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/DeviceManagerVfr.Vfr
14cafd4761f14651555473a7b1576a537f53acb4
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / BdsDxe / DeviceMngr / DeviceManagerVfr.Vfr
1 ///** @file
2 //
3 // Device Manager formset.
4 //
5 // Copyright (c) 2004 - 2008, Intel Corporation. <BR>
6 // All rights reserved. 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 #define FORMSET_GUID { 0x3ebfa8e6, 0x511d, 0x4b5b, 0xa9, 0x5f, 0xfb, 0x38, 0x26, 0xf, 0x1c, 0x27 }
17
18 #define EFI_DISK_DEVICE_CLASS 0x0001
19 #define EFI_VIDEO_DEVICE_CLASS 0x0002
20 #define EFI_NETWORK_DEVICE_CLASS 0x0004
21 #define EFI_INPUT_DEVICE_CLASS 0x0008
22 #define EFI_ON_BOARD_DEVICE_CLASS 0x0010
23 #define EFI_OTHER_DEVICE_CLASS 0x0020
24 #define LABEL_VBIOS 0x0040
25
26 #define LABEL_END 0xffff
27
28 #define DEVICE_MANAGER_CLASS 0x0000
29 #define FRONT_PAGE_SUBCLASS 0x0003
30
31 #define DEVICE_MANAGER_FORM_ID 0x1000
32
33 formset
34 guid = FORMSET_GUID,
35 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE),
36 help = STRING_TOKEN(STR_EMPTY_STRING),
37 class = DEVICE_MANAGER_CLASS,
38 subclass = FRONT_PAGE_SUBCLASS,
39
40 form formid = DEVICE_MANAGER_FORM_ID,
41 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE);
42
43 //
44 // This is where devices get added to the device manager hierarchy
45 //
46 label EFI_DISK_DEVICE_CLASS;
47 // label LABEL_END; // Since next opcode is a label, so this one could be omitted to save code size
48
49 label EFI_VIDEO_DEVICE_CLASS;
50 // label LABEL_END;
51
52 label EFI_NETWORK_DEVICE_CLASS;
53 // label LABEL_END;
54
55 label EFI_INPUT_DEVICE_CLASS;
56 // label LABEL_END;
57
58 label EFI_ON_BOARD_DEVICE_CLASS;
59 // label LABEL_END;
60
61 label EFI_OTHER_DEVICE_CLASS;
62 label LABEL_END;
63
64 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
65
66 label LABEL_VBIOS;
67 label LABEL_END;
68
69 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
70 subtitle text = STRING_TOKEN(STR_EXIT_STRING);
71
72 endform;
73 endformset;
74