You've already forked edk2-platforms
mirror of
https://github.com/Dasharo/edk2-platforms.git
synced 2026-03-06 14:51:43 -08:00
In preparation for adding Raspberry Pi 4 support, the Pi 3 platform is restructured by factorizing all the drivers and libraries that are going to be commonly used by the two platforms. Because much of the Pi 4 SoC is an extension of the Pi 3 one this means that almost everything, except the ACPI tables, is moved up into a new common RaspberryPi/ subdirectory that will serve both platforms. The .dec is also moved to this directory, under a new RaspberryPi.dec name, and existing references to it are updated. This commit requires the edk2-non-osi in use to contain commit 243e55f622ea in order to build. Signed-off-by: Pete Batard <pete@akeo.ie> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
67 lines
1.7 KiB
INI
67 lines
1.7 KiB
INI
#/** @file
|
|
#
|
|
# Component description file for Graphics Output module
|
|
#
|
|
# Copyright (c) 2017, Andrei Warkentin <andrey.warkentin@gmail.com>
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
#**/
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x0001001A
|
|
BASE_NAME = DisplayDxe
|
|
FILE_GUID = c5deae31-fad2-4030-841b-cfc9644d2c5b
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = DisplayDxeInitialize
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# DRIVER_BINDING = gGraphicsConsoleDriverBinding
|
|
# COMPONENT_NAME = gGraphicsConsoleComponentName
|
|
# COMPONENT_NAME2 = gGraphicsConsoleComponentName2
|
|
#
|
|
|
|
[Sources]
|
|
DisplayDxe.h
|
|
DisplayDxe.c
|
|
Screenshot.c
|
|
ComponentName.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
ArmPkg/ArmPkg.dec
|
|
Platform/RaspberryPi/RaspberryPi.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
UefiLib
|
|
MemoryAllocationLib
|
|
UefiDriverEntryPoint
|
|
IoLib
|
|
TimerLib
|
|
BmpSupportLib
|
|
UefiRuntimeServicesTableLib
|
|
|
|
[Protocols]
|
|
gEfiLoadedImageProtocolGuid
|
|
gEfiDevicePathProtocolGuid
|
|
gEfiGraphicsOutputProtocolGuid
|
|
gEfiCpuArchProtocolGuid
|
|
gEfiSimpleFileSystemProtocolGuid
|
|
gEfiSimpleTextInputExProtocolGuid
|
|
gRaspberryPiFirmwareProtocolGuid
|
|
|
|
[Pcd]
|
|
gRaspberryPiTokenSpaceGuid.PcdDisplayEnableScaledVModes
|
|
gRaspberryPiTokenSpaceGuid.PcdDisplayEnableSShot
|
|
|
|
[Guids]
|
|
|
|
[Depex]
|
|
gEfiCpuArchProtocolGuid AND gRaspberryPiFirmwareProtocolGuid
|