]> git.proxmox.com Git - mirror_edk2.git/blob - EdkUnixPkg/Dxe/PlatformBds/Generic/DeviceMngr/DeviceManagerVfr.Vfr
Unix version of EFI emulator
[mirror_edk2.git] / EdkUnixPkg / Dxe / PlatformBds / Generic / DeviceMngr / DeviceManagerVfr.Vfr
1 // *++
2 //
3 // Copyright (c) 2006, 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 #include "BdsStrDefs.h"
25
26 #define FORMSET_GUID { 0x3ebfa8e6, 0x511d, 0x4b5b, { 0xa9, 0x5f, 0xfb, 0x38, 0x26, 0xf, 0x1c, 0x27 } }
27
28 #define EFI_DISK_DEVICE_CLASS 0x01
29 #define EFI_VIDEO_DEVICE_CLASS 0x02
30 #define EFI_NETWORK_DEVICE_CLASS 0x04
31 #define EFI_INPUT_DEVICE_CLASS 0x08
32 #define EFI_ON_BOARD_DEVICE_CLASS 0x10
33 #define EFI_OTHER_DEVICE_CLASS 0x20
34 #define EFI_VBIOS_CLASS 0x40
35
36 #define DEVICE_MANAGER_CLASS 0x0000
37 #define FRONT_PAGE_SUBCLASS 0x0003
38
39 formset
40 guid = FORMSET_GUID,
41 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE),
42 help = STRING_TOKEN(STR_EMPTY_STRING),
43 class = DEVICE_MANAGER_CLASS,
44 subclass = FRONT_PAGE_SUBCLASS,
45
46 form formid = 0x1000,
47 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE);
48
49 //
50 // This is where devices get added to the device manager hierarchy
51 //
52 subtitle text = STRING_TOKEN(STR_DISK_DEVICE);
53 label EFI_DISK_DEVICE_CLASS;
54
55 subtitle text = STRING_TOKEN(STR_VIDEO_DEVICE);
56 label EFI_VIDEO_DEVICE_CLASS;
57
58 subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE);
59 label EFI_NETWORK_DEVICE_CLASS;
60
61 subtitle text = STRING_TOKEN(STR_INPUT_DEVICE);
62 label EFI_INPUT_DEVICE_CLASS;
63
64 subtitle text = STRING_TOKEN(STR_ON_BOARD_DEVICE);
65 label EFI_ON_BOARD_DEVICE_CLASS;
66
67 subtitle text = STRING_TOKEN(STR_OTHER_DEVICE);
68 label EFI_OTHER_DEVICE_CLASS;
69
70 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
71 label EFI_VBIOS_CLASS;
72
73 endform;
74 endformset;
75