Skip to content
GitLab
Menu
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
4ad18e5d
Commit
4ad18e5d
authored
Feb 04, 2020
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
Feb 04, 2020
Browse files
Merge "BL2: Print ID of images we fail loading" into integration
parents
5f62213e
a416325b
Changes
1
Hide whitespace changes
Inline
Side-by-side
bl2/bl2_image_load_v2.c
View file @
4ad18e5d
...
...
@@ -68,7 +68,8 @@ struct entry_point_info *bl2_load_images(void)
err
=
load_auth_image
(
bl2_node_info
->
image_id
,
bl2_node_info
->
image_info
);
if
(
err
)
{
ERROR
(
"BL2: Failed to load image (%i)
\n
"
,
err
);
ERROR
(
"BL2: Failed to load image id %d (%i)
\n
"
,
bl2_node_info
->
image_id
,
err
);
plat_error_handler
(
err
);
}
}
else
{
...
...
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