]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/DeviceManagerVfr.Vfr
IntelFrameworkModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / BdsDxe / DeviceMngr / DeviceManagerVfr.Vfr
CommitLineData
5c08e117 1///** @file\r
2// \r
3// Device Manager formset.\r
4// \r
2fde83b1 5// Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>\r
c0a00b14 6// SPDX-License-Identifier: BSD-2-Clause-Patent\r
5c08e117 7// \r
8//**/\r
9\r
2fde83b1 10#include "DeviceManagerVfr.h"\r
5c08e117 11\r
12#define EFI_DISK_DEVICE_CLASS 0x0001\r
13#define EFI_VIDEO_DEVICE_CLASS 0x0002\r
14#define EFI_NETWORK_DEVICE_CLASS 0x0004\r
15#define EFI_INPUT_DEVICE_CLASS 0x0008\r
16#define EFI_ON_BOARD_DEVICE_CLASS 0x0010\r
17#define EFI_OTHER_DEVICE_CLASS 0x0020\r
5c08e117 18\r
19#define DEVICE_MANAGER_CLASS 0x0000\r
6aa22a17 20#define FRONT_PAGE_SUBCLASS 0x0003\r
5c08e117 21\r
5c08e117 22formset\r
2fde83b1 23 guid = DEVICE_MANAGER_FORMSET_GUID,\r
75bf9d0e
LG
24 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE),\r
25 help = STRING_TOKEN(STR_EMPTY_STRING),\r
2fde83b1 26 classguid = DEVICE_MANAGER_FORMSET_GUID,\r
5c08e117 27\r
28 form formid = DEVICE_MANAGER_FORM_ID,\r
29 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE);\r
30\r
3c4b1122 31 subtitle text = STRING_TOKEN(STR_DEVICES_LIST);\r
5c08e117 32 //\r
33 // This is where devices get added to the device manager hierarchy\r
34 //\r
35 label EFI_DISK_DEVICE_CLASS;\r
36// label LABEL_END; // Since next opcode is a label, so this one could be omitted to save code size\r
37\r
38 label EFI_VIDEO_DEVICE_CLASS;\r
39// label LABEL_END;\r
40\r
41 label EFI_NETWORK_DEVICE_CLASS;\r
42// label LABEL_END;\r
43\r
44 label EFI_INPUT_DEVICE_CLASS;\r
45// label LABEL_END;\r
46\r
47 label EFI_ON_BOARD_DEVICE_CLASS;\r
48// label LABEL_END;\r
49\r
75bf9d0e
LG
50// label EFI_OTHER_DEVICE_CLASS;\r
51\r
52 label LABEL_DEVICES_LIST;\r
5c08e117 53 label LABEL_END;\r
ab4da126 54 \r
5c08e117 55 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);\r
56\r
57 label LABEL_VBIOS;\r
58 label LABEL_END;\r
ab4da126 59 \r
5c08e117 60 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);\r
61 subtitle text = STRING_TOKEN(STR_EXIT_STRING);\r
62\r
63 endform;\r
3c4b1122
ED
64\r
65 form formid = NETWORK_DEVICE_LIST_FORM_ID,\r
66 title = STRING_TOKEN(STR_FORM_NETWORK_DEVICE_LIST_TITLE);\r
67\r
68 subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE_LIST_STRING);\r
69\r
70 label LABEL_NETWORK_DEVICE_LIST_ID;\r
71 label LABEL_END;\r
72 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);\r
73 subtitle text = STRING_TOKEN(STR_EXIT_STRING);\r
74 endform;\r
75\r
76 form formid = NETWORK_DEVICE_FORM_ID,\r
77 title = STRING_TOKEN(STR_FORM_NETWORK_DEVICE_TITLE);\r
78\r
79 subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE_STRING);\r
80\r
81 label LABEL_NETWORK_DEVICE_ID;\r
82 label LABEL_END;\r
83 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);\r
84 subtitle text = STRING_TOKEN(STR_EXIT_STRING);\r
85 endform;\r
5c08e117 86endformset;\r
87\r