Last change
on this file since 106386 was 85718, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Virtual Keyboard driver.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # Copyright (c) 2018, Linaro Ltd. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010019
|
---|
13 | BASE_NAME = VirtualKeyboardDxe
|
---|
14 | FILE_GUID = 88079b18-b42b-44aa-a6f2-b83911075e89
|
---|
15 | MODULE_TYPE = UEFI_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | ENTRY_POINT = InitializeVirtualKeyboard
|
---|
18 |
|
---|
19 | #
|
---|
20 | # The following information is for reference only and not required by the build tools.
|
---|
21 | #
|
---|
22 | # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64
|
---|
23 | #
|
---|
24 | # DRIVER_BINDING = gVirtualKeyboardDriverBinding
|
---|
25 | # COMPONENT_NAME = gVirtualKeyboardComponentName
|
---|
26 | #
|
---|
27 |
|
---|
28 | [Sources.common]
|
---|
29 | ComponentName.c
|
---|
30 | VirtualKeyboard.c
|
---|
31 |
|
---|
32 | [Packages]
|
---|
33 | EmbeddedPkg/EmbeddedPkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 | MdePkg/MdePkg.dec
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | BaseLib
|
---|
39 | BaseMemoryLib
|
---|
40 | DebugLib
|
---|
41 | IoLib
|
---|
42 | ReportStatusCodeLib
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | UefiDriverEntryPoint
|
---|
45 | UefiLib
|
---|
46 |
|
---|
47 | [Protocols]
|
---|
48 | gEfiDriverBindingProtocolGuid
|
---|
49 | gEfiSimpleTextInProtocolGuid
|
---|
50 | gEfiSimpleTextInputExProtocolGuid
|
---|
51 | gPlatformVirtualKeyboardProtocolGuid
|
---|
52 |
|
---|
53 | [Depex]
|
---|
54 | TRUE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.