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
Sunxi Tools
Commits
c818efd1
Commit
c818efd1
authored
Aug 06, 2012
by
Henrik Nordstrom
Browse files
bootinfo: Correct platform output
parent
5161ea09
Changes
1
Hide whitespace changes
Inline
Side-by-side
bootinfo.c
View file @
c818efd1
...
...
@@ -154,7 +154,7 @@ void print_boot_file_head(boot_file_head_t *hdr)
printf
(
"FILE ver : %.4s
\n
"
,
hdr
->
file_head_vsn
);
printf
(
"BOOT ver : %.4s
\n
"
,
hdr
->
Boot_vsn
);
printf
(
"eGON ver : %.4s
\n
"
,
hdr
->
eGON_vsn
);
printf
(
"platform : %
.8s
\n
"
,
hdr
->
platform
);
printf
(
"platform : %
c%c%c%c%c%c%c%c
\n
"
,
hdr
->
platform
[
0
],
hdr
->
platform
[
1
],
hdr
->
platform
[
2
],
hdr
->
platform
[
3
],
hdr
->
platform
[
4
],
hdr
->
platform
[
5
],
hdr
->
platform
[
6
],
hdr
->
platform
[
7
]
);
}
void
print_boot_dram_para
(
boot_dram_para_t
*
dram
)
...
...
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