1 | ## @file
|
---|
2 | # BootScriptLib instance that always produces NOP operation.
|
---|
3 | #
|
---|
4 | # This library is primarily used by platform that does not support ACPI S3
|
---|
5 | # resume. All the library interfaces simply return EFI_SUCCESS without
|
---|
6 | # performing any operation.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = BaseS3BootScriptLibNull
|
---|
17 | MODULE_UNI_FILE = BaseS3BootScriptLibNull.uni
|
---|
18 | FILE_GUID = 9A6DC1AC-94C0-43b1-8714-4C70FD58A815
|
---|
19 | MODULE_TYPE = BASE
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = S3BootScriptLib
|
---|
22 |
|
---|
23 |
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | BootScriptLib.c
|
---|
33 |
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdePkg/MdePkg.dec
|
---|
37 |
|
---|