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
14da5f76
Commit
14da5f76
authored
18 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup compiler warnings, update CHANGELOG
Signed-off-by:
Wolfgang Denk
<
wd@denx.de
>
parent
85f87fa4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+48
-0
48 additions, 0 deletions
CHANGELOG
board/nc650/nc650.c
+2
-4
2 additions, 4 deletions
board/nc650/nc650.c
lib_ppc/extable.c
+9
-9
9 additions, 9 deletions
lib_ppc/extable.c
with
59 additions
and
13 deletions
CHANGELOG
+
48
−
0
View file @
14da5f76
commit 6923565db12af34fd5e02d354ee65a8c78ac460f
Author: Detlev Zundel <dzu@denx.de>
Date: Fri Apr 20 12:01:47 2007 +0200
Fix breakage of NC650 board with respect to nand support.
Signed-off-by: Detlev Zundel <dzu@denx.de>
commit 39f23cd90947639ac278a18ff277ec786b5ac167
Author: Domen Puncer <domen.puncer@telargo.com>
Date: Fri Apr 20 11:13:16 2007 +0200
[RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
G2 core reference manual says decrementer and time base
are decreasing/increasing once every 4 bus clock cycles.
Lets fix it, so time in Linux won't run twice as fast
Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
Author: Gerald Van Baren <vanbaren@cideas.com>
Date: Thu Apr 19 23:14:39 2007 -0400
Fix serious pointer bug with bootm and reserve map.
What was suppose to be a stack variable was declared as a pointer,
overwriting random memory.
Also moved the libfdt.a requirement into the main Makefile. That is
The U-Boot Way.
commit 37837828d89084879bee2f2b8c7c68d4695940df
Author: Wolfgang Denk <wd@denx.de>
Date: Wed Apr 18 17:49:29 2007 +0200
Clenaup, update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
Author: Wolfgang Denk <wd@denx.de>
Author: Wolfgang Denk <wd@denx.de>
Date: Wed Apr 18 17:20:58 2007 +0200
Date: Wed Apr 18 17:20:58 2007 +0200
...
@@ -62,6 +102,14 @@ Date: Wed Apr 18 12:05:59 2007 +0200
...
@@ -62,6 +102,14 @@ Date: Wed Apr 18 12:05:59 2007 +0200
Signed-off-by: Stefan Roese <sr@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
Author: Peter Pearse <peter.pearse@arm.com>
Date: Tue Apr 17 13:30:33 2007 +0100
Move ppearse to ARM board list
Add Konstantin Kletschke for scb9328.
Signed-off-by: Peter Pearse <peter.pearse@arm.com>
commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
Author: Domen Puncer <domen.puncer@telargo.com>
Author: Domen Puncer <domen.puncer@telargo.com>
Date: Mon Apr 16 14:00:13 2007 +0200
Date: Mon Apr 16 14:00:13 2007 +0200
...
...
This diff is collapsed.
Click to expand it.
board/nc650/nc650.c
+
2
−
4
View file @
14da5f76
...
@@ -177,16 +177,14 @@ long int initdram (int board_type)
...
@@ -177,16 +177,14 @@ long int initdram (int board_type)
*
*
* try 8 column mode
* try 8 column mode
*/
*/
size8
=
dram_size
(
CFG_MAMR_8COL
,
(
ulong
*
)
SDRAM_BASE3_PRELIM
,
size8
=
dram_size
(
CFG_MAMR_8COL
,
SDRAM_BASE3_PRELIM
,
SDRAM_MAX_SIZE
);
SDRAM_MAX_SIZE
);
udelay
(
1000
);
udelay
(
1000
);
/*
/*
* try 9 column mode
* try 9 column mode
*/
*/
size9
=
dram_size
(
CFG_MAMR_9COL
,
(
ulong
*
)
SDRAM_BASE3_PRELIM
,
size9
=
dram_size
(
CFG_MAMR_9COL
,
SDRAM_BASE3_PRELIM
,
SDRAM_MAX_SIZE
);
SDRAM_MAX_SIZE
);
udelay
(
1000
);
udelay
(
1000
);
...
...
This diff is collapsed.
Click to expand it.
lib_ppc/extable.c
+
9
−
9
View file @
14da5f76
...
@@ -57,25 +57,25 @@ search_one_table(const struct exception_table_entry *first,
...
@@ -57,25 +57,25 @@ search_one_table(const struct exception_table_entry *first,
long
diff
;
long
diff
;
mid
=
(
last
-
first
)
/
2
+
first
;
mid
=
(
last
-
first
)
/
2
+
first
;
if
(
mid
>
CFG_MONITOR_BASE
)
{
if
(
(
ulong
)
mid
>
CFG_MONITOR_BASE
)
{
/* exception occurs in FLASH, before u-boot relocation.
/* exception occurs in FLASH, before u-boot relocation.
* No relocation offset is needed.
* No relocation offset is needed.
*/
*/
diff
=
mid
->
insn
-
value
;
diff
=
mid
->
insn
-
value
;
if
(
diff
==
0
)
if
(
diff
==
0
)
return
mid
->
fixup
;
return
mid
->
fixup
;
}
else
{
}
else
{
/* exception occurs in RAM, after u-boot relocation.
/* exception occurs in RAM, after u-boot relocation.
* A relocation offset should be added.
* A relocation offset should be added.
*/
*/
diff
=
(
mid
->
insn
+
gd
->
reloc_off
)
-
value
;
diff
=
(
mid
->
insn
+
gd
->
reloc_off
)
-
value
;
if
(
diff
==
0
)
if
(
diff
==
0
)
return
(
mid
->
fixup
+
gd
->
reloc_off
);
return
(
mid
->
fixup
+
gd
->
reloc_off
);
}
}
if
(
diff
<
0
)
if
(
diff
<
0
)
first
=
mid
+
1
;
first
=
mid
+
1
;
else
else
last
=
mid
-
1
;
last
=
mid
-
1
;
}
}
return
0
;
return
0
;
}
}
...
...
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