]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/PlatformBdsDxe/Generic/DeviceMngr/DeviceManagerVfr.Vfr
add in PlatformBds.inf
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / Generic / DeviceMngr / DeviceManagerVfr.Vfr
CommitLineData
bc11b829 1//\r
2// Include common header file for this module.\r
3//\r
4#include "CommonHeader.h"\r
5\r
6// *++\r
7//\r
8// Copyright (c) 2006, Intel Corporation \r
9// All rights reserved. This program and the accompanying materials \r
10// are licensed and made available under the terms and conditions of the BSD License \r
11// which accompanies this distribution. The full text of the license may be found at \r
12// http://opensource.org/licenses/bsd-license.php \r
13// \r
14// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
15// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
16// \r
17// Module Name:\r
18//\r
19// DeviceManagerVfr.vfr \r
20// \r
21// Abstract:\r
22// \r
23// Device Manager formset.\r
24// \r
25// Revision History: \r
26// \r
27// --*/\r
28\r
29#include "BdsStrDefs.h"\r
30\r
31#define FORMSET_GUID { 0x3ebfa8e6, 0x511d, 0x4b5b, { 0xa9, 0x5f, 0xfb, 0x38, 0x26, 0xf, 0x1c, 0x27 } }\r
32\r
33#define EFI_DISK_DEVICE_CLASS 0x01\r
34#define EFI_VIDEO_DEVICE_CLASS 0x02\r
35#define EFI_NETWORK_DEVICE_CLASS 0x04\r
36#define EFI_INPUT_DEVICE_CLASS 0x08\r
37#define EFI_ON_BOARD_DEVICE_CLASS 0x10\r
38#define EFI_OTHER_DEVICE_CLASS 0x20\r
39#define EFI_VBIOS_CLASS 0x40\r
40\r
41#define DEVICE_MANAGER_CLASS 0x0000\r
42#define FRONT_PAGE_SUBCLASS 0x0003\r
43\r
44formset \r
45 guid = FORMSET_GUID,\r
46 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE), \r
47 help = STRING_TOKEN(STR_EMPTY_STRING),\r
48 class = DEVICE_MANAGER_CLASS, \r
49 subclass = FRONT_PAGE_SUBCLASS,\r
50\r
51 form formid = 0x1000,\r
52 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE);\r
53\r
54 //\r
55 // This is where devices get added to the device manager hierarchy\r
56 //\r
57 subtitle text = STRING_TOKEN(STR_DISK_DEVICE);\r
58 label EFI_DISK_DEVICE_CLASS;\r
59\r
60 subtitle text = STRING_TOKEN(STR_VIDEO_DEVICE);\r
61 label EFI_VIDEO_DEVICE_CLASS;\r
62\r
63 subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE);\r
64 label EFI_NETWORK_DEVICE_CLASS;\r
65\r
66 subtitle text = STRING_TOKEN(STR_INPUT_DEVICE);\r
67 label EFI_INPUT_DEVICE_CLASS;\r
68\r
69 subtitle text = STRING_TOKEN(STR_ON_BOARD_DEVICE);\r
70 label EFI_ON_BOARD_DEVICE_CLASS;\r
71\r
72 subtitle text = STRING_TOKEN(STR_OTHER_DEVICE);\r
73 label EFI_OTHER_DEVICE_CLASS;\r
74 \r
75 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);\r
76 label EFI_VBIOS_CLASS;\r
77 \r
78 endform;\r
79endformset;\r
80\r