2001d37588
Bump the edk2-platforms commit to the one corresponding to version edk2-stable202308 of edk2, based on the timestamps. Cc: Dick Olsson <hi@senzilla.io> Cc: Vincent Stehlé <vincent.stehle@arm.com> Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
902 B
Makefile
23 lines
902 B
Makefile
################################################################################
|
|
#
|
|
# edk2-platforms
|
|
#
|
|
################################################################################
|
|
|
|
# Keep in sync with latest commit as of the release date for boot/edk2
|
|
EDK2_PLATFORMS_VERSION = e509ac5a729ebe2a3bc905aed1df23226aca4dc9
|
|
EDK2_PLATFORMS_SITE = $(call github,tianocore,edk2-platforms,$(EDK2_PLATFORMS_VERSION))
|
|
EDK2_PLATFORMS_LICENSE = BSD-2-Clause-Patent
|
|
EDK2_PLATFORMS_LICENSE_FILES = License.txt
|
|
EDK2_PLATFORMS_INSTALL_TARGET = NO
|
|
EDK2_PLATFORMS_INSTALL_STAGING = YES
|
|
|
|
# There is nothing to build for edk2-platforms. All we need to do is to copy
|
|
# all description files to staging, for other packages to build with.
|
|
define EDK2_PLATFORMS_INSTALL_STAGING_CMDS
|
|
mkdir -p $(STAGING_DIR)/usr/share/edk2-platforms
|
|
cp -rf $(@D)/*/ $(STAGING_DIR)/usr/share/edk2-platforms/
|
|
endef
|
|
|
|
$(eval $(generic-package))
|