Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
958fc48a
Commit
958fc48a
authored
17 years ago
by
Marian Balakowicz
Committed by
Wolfgang Denk
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[new uImage] Fix FDT header verification in PPC do_boot_linux() routine
Signed-off-by:
Marian Balakowicz
<
m8@semihalf.com
>
parent
15158971
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib_ppc/ppc_linux.c
+2
-2
2 additions, 2 deletions
lib_ppc/ppc_linux.c
with
2 additions
and
2 deletions
lib_ppc/ppc_linux.c
+
2
−
2
View file @
958fc48a
...
@@ -265,9 +265,9 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
...
@@ -265,9 +265,9 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
of_flat_tree
=
(
char
*
)
simple_strtoul
(
argv
[
3
],
NULL
,
16
);
of_flat_tree
=
(
char
*
)
simple_strtoul
(
argv
[
3
],
NULL
,
16
);
hdr
=
(
image_header_t
*
)
of_flat_tree
;
hdr
=
(
image_header_t
*
)
of_flat_tree
;
#if defined(CONFIG_OF_FLAT_TREE)
#if defined(CONFIG_OF_FLAT_TREE)
if
(
*
((
ulong
*
)(
of_flat_tree
+
image_get_header_size
()))
!
=
OF_DT_HEADER
)
{
if
(
*
((
ulong
*
)(
of_flat_tree
))
=
=
OF_DT_HEADER
)
{
#elif defined(CONFIG_OF_LIBFDT)
#elif defined(CONFIG_OF_LIBFDT)
if
(
fdt_check_header
(
of_flat_tree
+
image_get_header_size
()
)
!
=
0
)
{
if
(
fdt_check_header
(
of_flat_tree
)
=
=
0
)
{
#endif
#endif
#ifndef CFG_NO_FLASH
#ifndef CFG_NO_FLASH
if
(
addr2info
((
ulong
)
of_flat_tree
)
!=
NULL
)
if
(
addr2info
((
ulong
)
of_flat_tree
)
!=
NULL
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment