Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot
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
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
Florian Mayer
u-boot
Commits
fd4bb67b
Commit
fd4bb67b
authored
19 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Fix tools/bmp_logo.c using incorrect offset to pixel data
Patch by Andrew Dyer, 31 Jan 2005
parent
fe7eb5d8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
tools/bmp_logo.c
+8
-2
8 additions, 2 deletions
tools/bmp_logo.c
with
11 additions
and
2 deletions
CHANGELOG
+
3
−
0
View file @
fd4bb67b
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
Changes for U-Boot 1.1.4:
Changes for U-Boot 1.1.4:
======================================================================
======================================================================
* Fix tools/bmp_logo.c using incorrect offset to pixel data
Patch by Andrew Dyer, 31 Jan 2005
* Add ARM946E cpu and core module targets; remap memory to 0x00000000
* Add ARM946E cpu and core module targets; remap memory to 0x00000000
Patch by Peter Pearse, 2 Feb 2005
Patch by Peter Pearse, 2 Feb 2005
...
...
This diff is collapsed.
Click to expand it.
tools/bmp_logo.c
+
8
−
2
View file @
fd4bb67b
...
@@ -46,7 +46,7 @@ int main (int argc, char *argv[])
...
@@ -46,7 +46,7 @@ int main (int argc, char *argv[])
FILE
*
fp
;
FILE
*
fp
;
bitmap_t
bmp
;
bitmap_t
bmp
;
bitmap_t
*
b
=
&
bmp
;
bitmap_t
*
b
=
&
bmp
;
uint16_t
n_colors
;
uint16_t
data_offset
,
n_colors
;
if
(
argc
<
2
)
{
if
(
argc
<
2
)
{
fprintf
(
stderr
,
"Usage: %s file
\n
"
,
argv
[
0
]);
fprintf
(
stderr
,
"Usage: %s file
\n
"
,
argv
[
0
]);
...
@@ -67,7 +67,9 @@ int main (int argc, char *argv[])
...
@@ -67,7 +67,9 @@ int main (int argc, char *argv[])
* read width and height of the image, and the number of colors used;
* read width and height of the image, and the number of colors used;
* ignore the rest
* ignore the rest
*/
*/
skip_bytes
(
fp
,
16
);
skip_bytes
(
fp
,
8
);
fread
(
&
data_offset
,
sizeof
(
uint16_t
),
1
,
fp
);
skip_bytes
(
fp
,
6
);
fread
(
&
b
->
width
,
sizeof
(
uint16_t
),
1
,
fp
);
fread
(
&
b
->
width
,
sizeof
(
uint16_t
),
1
,
fp
);
skip_bytes
(
fp
,
2
);
skip_bytes
(
fp
,
2
);
fread
(
&
b
->
height
,
sizeof
(
uint16_t
),
1
,
fp
);
fread
(
&
b
->
height
,
sizeof
(
uint16_t
),
1
,
fp
);
...
@@ -78,6 +80,7 @@ int main (int argc, char *argv[])
...
@@ -78,6 +80,7 @@ int main (int argc, char *argv[])
/*
/*
* Repair endianess.
* Repair endianess.
*/
*/
data_offset
=
le_short
(
data_offset
);
b
->
width
=
le_short
(
b
->
width
);
b
->
width
=
le_short
(
b
->
width
);
b
->
height
=
le_short
(
b
->
height
);
b
->
height
=
le_short
(
b
->
height
);
n_colors
=
le_short
(
n_colors
);
n_colors
=
le_short
(
n_colors
);
...
@@ -129,6 +132,9 @@ int main (int argc, char *argv[])
...
@@ -129,6 +132,9 @@ int main (int argc, char *argv[])
);
);
}
}
/* seek to offset indicated by file header */
fseek
(
fp
,
(
long
)
data_offset
,
SEEK_SET
);
/* read the bitmap; leave room for default color map */
/* read the bitmap; leave room for default color map */
printf
(
"
\n
"
);
printf
(
"
\n
"
);
printf
(
"};
\n
"
);
printf
(
"};
\n
"
);
...
...
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