Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
2904f84e
Unverified
Commit
2904f84e
authored
7 years ago
by
davidcunado-arm
Committed by
GitHub
7 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #1155 from masahir0y/uniphier
Fix build error when creating ROT key for UniPhier platform
parents
92c5066c
3c946152
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
v2.1
v2.1-rc1
v2.1-rc0
v2.0
v2.0-rc0
v1.6
v1.6-rc1
v1.6-rc0
v1.5
v1.5-rc3
v1.5-rc2
v1.5-rc1
v1.5-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+2
-0
Makefile
make_helpers/build_macros.mk
+1
-1
make_helpers/build_macros.mk
plat/rockchip/rk3399/platform.mk
+1
-1
plat/rockchip/rk3399/platform.mk
plat/socionext/uniphier/platform.mk
+1
-1
plat/socionext/uniphier/platform.mk
with
5 additions
and
3 deletions
+5
-3
Makefile
View file @
2904f84e
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
make_helpers/build_macros.mk
View file @
2904f84e
...
...
@@ -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})))
...
...
This diff is collapsed.
Click to expand it.
plat/rockchip/rk3399/platform.mk
View file @
2904f84e
...
...
@@ -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
)
This diff is collapsed.
Click to expand it.
plat/socionext/uniphier/platform.mk
View file @
2904f84e
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help