public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-non-osi][PATCH 1/1] Platforms/RPi3: Restructure platform in preparation for Pi 4
@ 2019-10-21 11:25 Pete Batard
  2019-10-21 13:09 ` [edk2-devel] " Philippe Mathieu-Daudé
  0 siblings, 1 reply; 3+ messages in thread
From: Pete Batard @ 2019-10-21 11:25 UTC (permalink / raw)
  To: devel; +Cc: ard.biesheuvel, leif.lindholm

Similar to what is being done in edk2-platforms, elements of the Pi 3
platform that can be factorized for use with the Pi 4 are factorized.

For non-OSI this only applies to the Logo driver, as the Device Tree
and the Trusted Firmware are of course too platform specific to be
factorized.

Signed-off-by: Pete Batard <pete@akeo.ie>
---
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/License.txt      |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/Logo.bmp         | Bin
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/Logo.c           |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/Logo.eps         | Bin
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/Logo.idf         |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/Logo.inf         |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/Logo.uni         |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/LogoDxe.inf      |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/LogoDxe.uni      |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/LogoDxeExtra.uni |   0
 Platform/RaspberryPi/{RPi3 => }/Drivers/LogoDxe/LogoExtra.uni    |   0
 11 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/License.txt b/Platform/RaspberryPi/Drivers/LogoDxe/License.txt
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/License.txt
rename to Platform/RaspberryPi/Drivers/LogoDxe/License.txt
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.bmp b/Platform/RaspberryPi/Drivers/LogoDxe/Logo.bmp
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.bmp
rename to Platform/RaspberryPi/Drivers/LogoDxe/Logo.bmp
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.c b/Platform/RaspberryPi/Drivers/LogoDxe/Logo.c
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.c
rename to Platform/RaspberryPi/Drivers/LogoDxe/Logo.c
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.eps b/Platform/RaspberryPi/Drivers/LogoDxe/Logo.eps
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.eps
rename to Platform/RaspberryPi/Drivers/LogoDxe/Logo.eps
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.idf b/Platform/RaspberryPi/Drivers/LogoDxe/Logo.idf
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.idf
rename to Platform/RaspberryPi/Drivers/LogoDxe/Logo.idf
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.inf b/Platform/RaspberryPi/Drivers/LogoDxe/Logo.inf
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.inf
rename to Platform/RaspberryPi/Drivers/LogoDxe/Logo.inf
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.uni b/Platform/RaspberryPi/Drivers/LogoDxe/Logo.uni
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/Logo.uni
rename to Platform/RaspberryPi/Drivers/LogoDxe/Logo.uni
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoDxe.inf b/Platform/RaspberryPi/Drivers/LogoDxe/LogoDxe.inf
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoDxe.inf
rename to Platform/RaspberryPi/Drivers/LogoDxe/LogoDxe.inf
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoDxe.uni b/Platform/RaspberryPi/Drivers/LogoDxe/LogoDxe.uni
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoDxe.uni
rename to Platform/RaspberryPi/Drivers/LogoDxe/LogoDxe.uni
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoDxeExtra.uni b/Platform/RaspberryPi/Drivers/LogoDxe/LogoDxeExtra.uni
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoDxeExtra.uni
rename to Platform/RaspberryPi/Drivers/LogoDxe/LogoDxeExtra.uni
diff --git a/Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoExtra.uni b/Platform/RaspberryPi/Drivers/LogoDxe/LogoExtra.uni
similarity index 100%
rename from Platform/RaspberryPi/RPi3/Drivers/LogoDxe/LogoExtra.uni
rename to Platform/RaspberryPi/Drivers/LogoDxe/LogoExtra.uni
-- 
2.21.0.windows.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-10-21 14:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-21 11:25 [edk2-non-osi][PATCH 1/1] Platforms/RPi3: Restructure platform in preparation for Pi 4 Pete Batard
2019-10-21 13:09 ` [edk2-devel] " Philippe Mathieu-Daudé
2019-10-21 14:36   ` Leif Lindholm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox