1 | ## @file
|
---|
2 | # Provides services to display completion progress of a firmware update on a
|
---|
3 | # text console.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2016, Microsoft Corporation, All rights reserved.<BR>
|
---|
6 | # Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # Redistribution and use in source and binary forms, with or without
|
---|
9 | # modification, are permitted provided that the following conditions are met:
|
---|
10 | # 1. Redistributions of source code must retain the above copyright notice,
|
---|
11 | # this list of conditions and the following disclaimer.
|
---|
12 | # 2. Redistributions in binary form must reproduce the above copyright notice,
|
---|
13 | # this list of conditions and the following disclaimer in the documentation
|
---|
14 | # and/or other materials provided with the distribution.
|
---|
15 | #
|
---|
16 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
---|
17 | # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
---|
18 | # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
19 | # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
---|
20 | # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
---|
21 | # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
22 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
---|
23 | # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
---|
24 | # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
---|
25 | # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
26 | ##
|
---|
27 |
|
---|
28 | [Defines]
|
---|
29 | INF_VERSION = 0x00010005
|
---|
30 | BASE_NAME = DisplayUpdateProgressLibText
|
---|
31 | MODULE_UNI_FILE = DisplayUpdateProgressLibText.uni
|
---|
32 | FILE_GUID = CDEF83AE-1900-4B41-BF47-AAE9BD729CA5
|
---|
33 | MODULE_TYPE = DXE_DRIVER
|
---|
34 | VERSION_STRING = 1.0
|
---|
35 | LIBRARY_CLASS = DisplayUpdateProgressLib|DXE_DRIVER UEFI_DRIVER UEFI_APPLICATION
|
---|
36 |
|
---|
37 | #
|
---|
38 | # The following information is for reference only and not required by the build tools.
|
---|
39 | #
|
---|
40 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
41 | #
|
---|
42 |
|
---|
43 | [Sources]
|
---|
44 | DisplayUpdateProgressLibText.c
|
---|
45 |
|
---|
46 | [Packages]
|
---|
47 | MdePkg/MdePkg.dec
|
---|
48 | MdeModulePkg/MdeModulePkg.dec
|
---|
49 |
|
---|
50 | [LibraryClasses]
|
---|
51 | DebugLib
|
---|
52 | UefiBootServicesTableLib
|
---|
53 | UefiLib
|
---|