* [PATCH edk2-platforms 0/2] Platform/SynQuacerEvalBoard: add some modules
@ 2017-12-12 20:09 Ard Biesheuvel
2017-12-12 20:09 ` [PATCH edk2-platforms 1/2] Platform/SynQuacerEvalBoard: add RamDiskDxe driver to build Ard Biesheuvel
2017-12-12 20:09 ` [PATCH edk2-platforms 2/2] Platform/SynQuacerEvalBoard: add BGRT and ConsolePrefDxe drivers Ard Biesheuvel
0 siblings, 2 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2017-12-12 20:09 UTC (permalink / raw)
To: edk2-devel; +Cc: leif.lindholm, Ard Biesheuvel
For parity with DeveloperBox, add some missing modules to EVB (which is the
only hardware I currently have access to)
Ard Biesheuvel (2):
Platform/SynQuacerEvalBoard: add RamDiskDxe driver to build
Platform/SynQuacerEvalBoard: add BGRT and ConsolePrefDxe drivers
Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 8 ++++++++
Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf | 7 +++++++
2 files changed, 15 insertions(+)
--
2.11.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH edk2-platforms 1/2] Platform/SynQuacerEvalBoard: add RamDiskDxe driver to build
2017-12-12 20:09 [PATCH edk2-platforms 0/2] Platform/SynQuacerEvalBoard: add some modules Ard Biesheuvel
@ 2017-12-12 20:09 ` Ard Biesheuvel
2017-12-12 20:09 ` [PATCH edk2-platforms 2/2] Platform/SynQuacerEvalBoard: add BGRT and ConsolePrefDxe drivers Ard Biesheuvel
1 sibling, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2017-12-12 20:09 UTC (permalink / raw)
To: edk2-devel; +Cc: leif.lindholm, Ard Biesheuvel
Add the RamDiskDxe driver, which is required for HTTP booting .iso
images.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 2 ++
Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf | 1 +
2 files changed, 3 insertions(+)
diff --git a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
index 630727cd19b3..e825eba9fa4f 100644
--- a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
+++ b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
@@ -108,6 +108,7 @@ [LibraryClasses.common]
PlatformBootManagerLib|ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf
CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
+ FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
PeCoffExtraActionLib|ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.inf
DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
@@ -578,6 +579,7 @@ [Components.common]
MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
FatPkg/EnhancedFatDxe/Fat.inf
+ MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
#
# RNG
diff --git a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf
index 1599f8953008..1ebc55ddc84d 100644
--- a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf
+++ b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf
@@ -181,6 +181,7 @@ [FV.FvMain]
INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
INF FatPkg/EnhancedFatDxe/Fat.inf
+ INF MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
#
# RNG
--
2.11.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH edk2-platforms 2/2] Platform/SynQuacerEvalBoard: add BGRT and ConsolePrefDxe drivers
2017-12-12 20:09 [PATCH edk2-platforms 0/2] Platform/SynQuacerEvalBoard: add some modules Ard Biesheuvel
2017-12-12 20:09 ` [PATCH edk2-platforms 1/2] Platform/SynQuacerEvalBoard: add RamDiskDxe driver to build Ard Biesheuvel
@ 2017-12-12 20:09 ` Ard Biesheuvel
1 sibling, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2017-12-12 20:09 UTC (permalink / raw)
To: edk2-devel; +Cc: leif.lindholm, Ard Biesheuvel
Add the drivers that make the serial and graphical console behave more
intuitively.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
The BGRT driver is needed to make BootLogoLib behave (and it is already
enabled for DeveloperBox)
Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 6 ++++++
Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf | 6 ++++++
2 files changed, 12 insertions(+)
diff --git a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
index e825eba9fa4f..a7f57f1d33ab 100644
--- a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
+++ b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
@@ -545,6 +545,7 @@ [Components.common]
MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
+ MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
#
# eMMC support
@@ -614,6 +615,11 @@ [Components.common]
}
#
+ # Console preference selection
+ #
+ EmbeddedPkg/Drivers/ConsolePrefDxe/ConsolePrefDxe.inf
+
+ #
# DT support
#
Silicon/Socionext/SynQuacer/DeviceTree/SynQuacerEvalBoard.inf
diff --git a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf
index 1ebc55ddc84d..ba2f32328c2b 100644
--- a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf
+++ b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.fdf
@@ -147,6 +147,7 @@ [FV.FvMain]
INF MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
INF MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
INF MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
+ INF MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
#
# eMMC support
@@ -213,6 +214,11 @@ [FV.FvMain]
INF Silicon/Socionext/SynQuacer/Drivers/Net/NetsecDxe/NetsecDxe.inf
#
+ # Console preference selection
+ #
+ INF EmbeddedPkg/Drivers/ConsolePrefDxe/ConsolePrefDxe.inf
+
+ #
# DT support
#
INF RuleOverride = DTB Silicon/Socionext/SynQuacer/DeviceTree/SynQuacerEvalBoard.inf
--
2.11.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-12-12 20:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-12 20:09 [PATCH edk2-platforms 0/2] Platform/SynQuacerEvalBoard: add some modules Ard Biesheuvel
2017-12-12 20:09 ` [PATCH edk2-platforms 1/2] Platform/SynQuacerEvalBoard: add RamDiskDxe driver to build Ard Biesheuvel
2017-12-12 20:09 ` [PATCH edk2-platforms 2/2] Platform/SynQuacerEvalBoard: add BGRT and ConsolePrefDxe drivers Ard Biesheuvel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox