1 | # $Id: LogoDxe.inf 82968 2020-02-04 10:35:17Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # LogoDxe.inf
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2019-2020 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 | # The contents of this file may alternatively be used under the terms
|
---|
18 | # of the Common Development and Distribution License Version 1.0
|
---|
19 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | # CDDL are applicable instead of those of the GPL.
|
---|
22 | #
|
---|
23 | # You may elect to license modified versions of this file under the
|
---|
24 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | #
|
---|
26 |
|
---|
27 | #
|
---|
28 | # This code is based on:
|
---|
29 | #
|
---|
30 | ## @file
|
---|
31 | # The default logo bitmap picture shown on setup screen.
|
---|
32 | #
|
---|
33 | # Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
|
---|
34 | #
|
---|
35 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
36 | #
|
---|
37 | #
|
---|
38 | ##
|
---|
39 |
|
---|
40 | [Defines]
|
---|
41 | INF_VERSION = 0x00010005
|
---|
42 | BASE_NAME = LogoDxe
|
---|
43 | MODULE_UNI_FILE = LogoDxe.uni
|
---|
44 | FILE_GUID = F74D20EE-37E7-48FC-97F7-9B1047749C69
|
---|
45 | MODULE_TYPE = DXE_DRIVER
|
---|
46 | VERSION_STRING = 1.0
|
---|
47 |
|
---|
48 | ENTRY_POINT = InitializeLogo
|
---|
49 | #
|
---|
50 | # This flag specifies whether HII resource section is generated into PE image.
|
---|
51 | #
|
---|
52 | UEFI_HII_RESOURCE_SECTION = TRUE
|
---|
53 |
|
---|
54 | #
|
---|
55 | # The following information is for reference only and not required by the build tools.
|
---|
56 | #
|
---|
57 | # VALID_ARCHITECTURES = IA32 X64
|
---|
58 | #
|
---|
59 |
|
---|
60 | [Sources]
|
---|
61 | Logo.bmp
|
---|
62 | Logo.c
|
---|
63 | Logo.idf
|
---|
64 |
|
---|
65 | [Packages]
|
---|
66 | MdeModulePkg/MdeModulePkg.dec
|
---|
67 | MdePkg/MdePkg.dec
|
---|
68 |
|
---|
69 | [LibraryClasses]
|
---|
70 | UefiBootServicesTableLib
|
---|
71 | UefiDriverEntryPoint
|
---|
72 | DebugLib
|
---|
73 |
|
---|
74 | [Protocols]
|
---|
75 | gEfiHiiDatabaseProtocolGuid ## CONSUMES
|
---|
76 | gEfiHiiImageExProtocolGuid ## CONSUMES
|
---|
77 | gEfiHiiPackageListProtocolGuid ## PRODUCES CONSUMES
|
---|
78 | gEdkiiPlatformLogoProtocolGuid ## PRODUCES
|
---|
79 |
|
---|
80 | [Depex]
|
---|
81 | gEfiHiiDatabaseProtocolGuid AND
|
---|
82 | gEfiHiiImageExProtocolGuid
|
---|
83 |
|
---|
84 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
85 | LogoDxeExtra.uni
|
---|