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