1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| /**@file
| Defined the platform specific device path which will be filled to
| ConIn/ConOut variables.
|
| Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
|
| #include "PlatformBootManager.h"
|
| ///
| /// Predefined platform default console device path
| ///
| GLOBAL_REMOVE_IF_UNREFERENCED PLATFORM_CONSOLE_CONNECT_ENTRY gPlatformConsole[] = {
| {
| NULL,
| 0
| }
| };
|
|
| GLOBAL_REMOVE_IF_UNREFERENCED USB_CLASS_FORMAT_DEVICE_PATH gUsbClassKeyboardDevicePath = {
| {
| {
| MESSAGING_DEVICE_PATH,
| MSG_USB_CLASS_DP,
| {
| (UINT8) (sizeof (USB_CLASS_DEVICE_PATH)),
| (UINT8) ((sizeof (USB_CLASS_DEVICE_PATH)) >> 8)
| }
| },
| 0xffff, // VendorId
| 0xffff, // ProductId
| CLASS_HID, // DeviceClass
| SUBCLASS_BOOT, // DeviceSubClass
| PROTOCOL_KEYBOARD // DeviceProtocol
| },
| gEndEntire
| };
|
|