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
a3bb7bfc
Commit
a3bb7bfc
authored
18 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Plain Diff
Merge with /home/sr/git/u-boot/avr32
parents
d262a92f
1a1b7374
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG
+5
-0
5 additions, 0 deletions
CHANGELOG
common/cmd_bootm.c
+3
-0
3 additions, 0 deletions
common/cmd_bootm.c
include/image.h
+1
-0
1 addition, 0 deletions
include/image.h
tools/mkimage.c
+1
-0
1 addition, 0 deletions
tools/mkimage.c
with
10 additions
and
0 deletions
CHANGELOG
+
5
−
0
View file @
a3bb7bfc
...
@@ -2,6 +2,11 @@
...
@@ -2,6 +2,11 @@
Changes since U-Boot 1.1.4:
Changes since U-Boot 1.1.4:
======================================================================
======================================================================
* Define IH_CPU_AVR32
Make it possible to generate AVR32 uImage files with mkimage and
make cmd_bootm recognize them.
Patch by Haavard Skinnemoen, 22 Sep 2006
* Fix buffer overflow problem in ft_build.c
* Fix buffer overflow problem in ft_build.c
Patch by Fredrik Roubert, 09 Oct 2006
Patch by Fredrik Roubert, 09 Oct 2006
...
...
This diff is collapsed.
Click to expand it.
common/cmd_bootm.c
+
3
−
0
View file @
a3bb7bfc
...
@@ -260,6 +260,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
...
@@ -260,6 +260,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
if
(
hdr
->
ih_arch
!=
IH_CPU_NIOS2
)
if
(
hdr
->
ih_arch
!=
IH_CPU_NIOS2
)
#elif defined(__blackfin__)
#elif defined(__blackfin__)
if
(
hdr
->
ih_arch
!=
IH_CPU_BLACKFIN
)
if
(
hdr
->
ih_arch
!=
IH_CPU_BLACKFIN
)
#elif defined(__avr32__)
if
(
hdr
->
ih_arch
!=
IH_CPU_AVR32
)
#else
#else
# error Unknown CPU type
# error Unknown CPU type
#endif
#endif
...
@@ -1236,6 +1238,7 @@ print_type (image_header_t *hdr)
...
@@ -1236,6 +1238,7 @@ print_type (image_header_t *hdr)
case
IH_CPU_INVALID
:
arch
=
"Invalid CPU"
;
break
;
case
IH_CPU_INVALID
:
arch
=
"Invalid CPU"
;
break
;
case
IH_CPU_ALPHA
:
arch
=
"Alpha"
;
break
;
case
IH_CPU_ALPHA
:
arch
=
"Alpha"
;
break
;
case
IH_CPU_ARM
:
arch
=
"ARM"
;
break
;
case
IH_CPU_ARM
:
arch
=
"ARM"
;
break
;
case
IH_CPU_AVR32
:
arch
=
"AVR32"
;
break
;
case
IH_CPU_I386
:
arch
=
"Intel x86"
;
break
;
case
IH_CPU_I386
:
arch
=
"Intel x86"
;
break
;
case
IH_CPU_IA64
:
arch
=
"IA64"
;
break
;
case
IH_CPU_IA64
:
arch
=
"IA64"
;
break
;
case
IH_CPU_MIPS
:
arch
=
"MIPS"
;
break
;
case
IH_CPU_MIPS
:
arch
=
"MIPS"
;
break
;
...
...
This diff is collapsed.
Click to expand it.
include/image.h
+
1
−
0
View file @
a3bb7bfc
...
@@ -76,6 +76,7 @@
...
@@ -76,6 +76,7 @@
#define IH_CPU_MICROBLAZE 14
/* MicroBlaze */
#define IH_CPU_MICROBLAZE 14
/* MicroBlaze */
#define IH_CPU_NIOS2 15
/* Nios-II */
#define IH_CPU_NIOS2 15
/* Nios-II */
#define IH_CPU_BLACKFIN 16
/* Blackfin */
#define IH_CPU_BLACKFIN 16
/* Blackfin */
#define IH_CPU_AVR32 17
/* AVR32 */
/*
/*
* Image Types
* Image Types
...
...
This diff is collapsed.
Click to expand it.
tools/mkimage.c
+
1
−
0
View file @
a3bb7bfc
...
@@ -94,6 +94,7 @@ table_entry_t arch_name[] = {
...
@@ -94,6 +94,7 @@ table_entry_t arch_name[] = {
{
IH_CPU_SPARC
,
"sparc"
,
"SPARC"
,
},
{
IH_CPU_SPARC
,
"sparc"
,
"SPARC"
,
},
{
IH_CPU_SPARC64
,
"sparc64"
,
"SPARC 64 Bit"
,
},
{
IH_CPU_SPARC64
,
"sparc64"
,
"SPARC 64 Bit"
,
},
{
IH_CPU_BLACKFIN
,
"blackfin"
,
"Blackfin"
,
},
{
IH_CPU_BLACKFIN
,
"blackfin"
,
"Blackfin"
,
},
{
IH_CPU_AVR32
,
"avr32"
,
"AVR32"
,
},
{
-
1
,
""
,
""
,
},
{
-
1
,
""
,
""
,
},
};
};
...
...
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