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