1 | ## @file
|
---|
2 | # Instance of S3 I/O Library based on I/O and S3 BootScript Library.
|
---|
3 | #
|
---|
4 | # S3 I/O and MMIO Library Services that do I/O and also
|
---|
5 | # enable the I/O operatation to be replayed during an S3 resume.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = BaseS3IoLib
|
---|
16 | MODULE_UNI_FILE = BaseS3IoLib.uni
|
---|
17 | FILE_GUID = B13F938E-47DF-4516-A397-8927A4E42B61
|
---|
18 | MODULE_TYPE = BASE
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | LIBRARY_CLASS = S3IoLib
|
---|
21 |
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | S3IoLib.c
|
---|
31 |
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | DebugLib
|
---|
38 | IoLib
|
---|
39 | S3BootScriptLib
|
---|
40 |
|
---|