]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/BdsDxe/DeviceMngr/DeviceManagerVfr.Vfr
UEFI HII: Merge UEFI HII support changes from branch.
[mirror_edk2.git] / MdeModulePkg / Universal / BdsDxe / DeviceMngr / DeviceManagerVfr.Vfr
1 // *++
2 //
3 // Copyright (c) 2004 - 2007, Intel Corporation
4 // All rights reserved. This program and the accompanying materials
5 // are licensed and made available under the terms and conditions of the BSD License
6 // which accompanies this distribution. The full text of the license may be found at
7 // http://opensource.org/licenses/bsd-license.php
8 //
9 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 //
12 // Module Name:
13 //
14 // DeviceManagerVfr.vfr
15 //
16 // Abstract:
17 //
18 // Device Manager formset.
19 //
20 // Revision History:
21 //
22 // --*/
23
24 #define FORMSET_GUID { 0x3ebfa8e6, 0x511d, 0x4b5b, 0xa9, 0x5f, 0xfb, 0x38, 0x26, 0xf, 0x1c, 0x27 }
25
26 #define EFI_DISK_DEVICE_CLASS 0x0001
27 #define EFI_VIDEO_DEVICE_CLASS 0x0002
28 #define EFI_NETWORK_DEVICE_CLASS 0x0004
29 #define EFI_INPUT_DEVICE_CLASS 0x0008
30 #define EFI_ON_BOARD_DEVICE_CLASS 0x0010
31 #define EFI_OTHER_DEVICE_CLASS 0x0020
32 #define LABEL_VBIOS 0x0040
33
34 #define LABEL_END 0xffff
35
36 #define DEVICE_MANAGER_CLASS 0x0000
37 #define FRONT_PAGE_SUBCLASS 0x0003
38
39 #define DEVICE_MANAGER_FORM_ID 0x1000
40
41 formset
42 guid = FORMSET_GUID,
43 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE),
44 help = STRING_TOKEN(STR_EMPTY_STRING),
45 class = DEVICE_MANAGER_CLASS,
46 subclass = FRONT_PAGE_SUBCLASS,
47
48 form formid = DEVICE_MANAGER_FORM_ID,
49 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE);
50
51 //
52 // This is where devices get added to the device manager hierarchy
53 //
54 label EFI_DISK_DEVICE_CLASS;
55 // label LABEL_END; // Since next opcode is a label, so this one could be omitted to save code size
56
57 label EFI_VIDEO_DEVICE_CLASS;
58 // label LABEL_END;
59
60 label EFI_NETWORK_DEVICE_CLASS;
61 // label LABEL_END;
62
63 label EFI_INPUT_DEVICE_CLASS;
64 // label LABEL_END;
65
66 label EFI_ON_BOARD_DEVICE_CLASS;
67 // label LABEL_END;
68
69 label EFI_OTHER_DEVICE_CLASS;
70 label LABEL_END;
71
72 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
73
74 label LABEL_VBIOS;
75 label LABEL_END;
76
77 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
78 subtitle text = STRING_TOKEN(STR_EXIT_STRING);
79
80 endform;
81 endformset;
82