Last change
on this file since 86605 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.4 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This is a sample HII resource driver.
|
---|
3 | #
|
---|
4 | # This driver show how a HII driver retrieve HII data using HII Package List protocol
|
---|
5 | # and publish the HII data.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = HiiResourcesSample
|
---|
17 | MODULE_UNI_FILE = HiiResourcesSample.uni
|
---|
18 | FILE_GUID = D49D2EB0-44D5-4621-9FD6-1A92C9109B99
|
---|
19 | MODULE_TYPE = UEFI_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | ENTRY_POINT = HiiResourcesSampleInit
|
---|
22 | UNLOAD_IMAGE = HiiResourcesSampleUnload
|
---|
23 | #
|
---|
24 | # This flag specifies whether HII resource section is generated into PE image.
|
---|
25 | #
|
---|
26 | UEFI_HII_RESOURCE_SECTION = TRUE
|
---|
27 |
|
---|
28 | #
|
---|
29 | # The following information is for reference only and not required by the build tools.
|
---|
30 | #
|
---|
31 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
32 | #
|
---|
33 |
|
---|
34 | [Sources]
|
---|
35 | HiiResourcesSample.c
|
---|
36 | SampleStrings.uni
|
---|
37 | Sample.vfr
|
---|
38 |
|
---|
39 | [Packages]
|
---|
40 | MdePkg/MdePkg.dec
|
---|
41 | MdeModulePkg/MdeModulePkg.dec
|
---|
42 |
|
---|
43 | [LibraryClasses]
|
---|
44 | UefiBootServicesTableLib
|
---|
45 | UefiDriverEntryPoint
|
---|
46 | UefiHiiServicesLib
|
---|
47 | HiiLib
|
---|
48 |
|
---|
49 | [Protocols]
|
---|
50 | gEfiHiiPackageListProtocolGuid ## CONSUMES
|
---|
51 | gEfiDevicePathProtocolGuid ## PRODUCES
|
---|
52 |
|
---|
53 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
54 | HiiResourcesSampleExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.