Browse Source
Merge pull request #1155 from masahir0y/uniphier
Fix build error when creating ROT key for UniPhier platform
pull/1158/head
davidcunado-arm
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
5 additions and
3 deletions
-
Makefile
-
make_helpers/build_macros.mk
-
plat/rockchip/rk3399/platform.mk
-
plat/socionext/uniphier/platform.mk
|
|
@ -260,6 +260,8 @@ include lib/stack_protector/stack_protector.mk |
|
|
|
|
|
|
|
include ${PLAT_MAKEFILE_FULL} |
|
|
|
|
|
|
|
$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT})) |
|
|
|
|
|
|
|
# Platform compatibility is not supported in AArch32
|
|
|
|
ifneq (${ARCH},aarch32) |
|
|
|
# If the platform has not defined ENABLE_PLAT_COMPAT, then enable it by default
|
|
|
|
|
|
@ -291,7 +291,7 @@ define MAKE_BL |
|
|
|
|
|
|
|
# Create generators for object directory structure
|
|
|
|
|
|
|
|
$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},)) |
|
|
|
$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT})) |
|
|
|
|
|
|
|
$(eval $(foreach objd,${OBJ_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR}))) |
|
|
|
|
|
|
|
|
|
@ -88,7 +88,7 @@ ${RK_PLAT_SOC}/drivers/pmu/pmu_fw.c: $(RK3399M0FW) |
|
|
|
${BUILD_PLAT}/bl31/cdn_dp.o: CCACHE_EXTRAFILES=$(HDCPFW) |
|
|
|
${RK_PLAT_SOC}/drivers/dp/cdn_dp.c: $(HDCPFW) |
|
|
|
|
|
|
|
$(eval $(call MAKE_PREREQ_DIR,${BUILD_M0},)) |
|
|
|
$(eval $(call MAKE_PREREQ_DIR,${BUILD_M0},${BUILD_PLAT})) |
|
|
|
.PHONY: $(RK3399M0FW) |
|
|
|
$(RK3399M0FW): | ${BUILD_M0} |
|
|
|
$(MAKE) -C ${RK_PLAT_SOC}/drivers/m0 BUILD=$(abspath ${BUILD_PLAT}/m0) |
|
|
|
|
|
@ -101,7 +101,7 @@ $(BUILD_PLAT)/bl1/uniphier_rotpk.o: $(ROTPK_HASH) |
|
|
|
$(BUILD_PLAT)/bl2/uniphier_rotpk.o: $(ROTPK_HASH) |
|
|
|
|
|
|
|
certificates: $(ROT_KEY) |
|
|
|
$(ROT_KEY): |
|
|
|
$(ROT_KEY): | $(BUILD_PLAT) |
|
|
|
@echo " OPENSSL $@" |
|
|
|
$(Q)openssl genrsa 2048 > $@ 2>/dev/null |
|
|
|
|
|
|
|