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
f805548b
Commit
f805548b
authored
14 years ago
by
Reinhard Meyer
Browse files
Options
Downloads
Patches
Plain Diff
AT91: fix TOP9000 build problem and change CONFIG_SYS_TEXT_BASE
Signed-off-by:
Reinhard Meyer
<
u-boot@emk-elektronik.de
>
parent
6741b531
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
board/emk/top9000/Makefile
+3
-3
3 additions, 3 deletions
board/emk/top9000/Makefile
board/emk/top9000/top9000.c
+1
-1
1 addition, 1 deletion
board/emk/top9000/top9000.c
include/configs/top9000.h
+2
-2
2 additions, 2 deletions
include/configs/top9000.h
with
6 additions
and
6 deletions
board/emk/top9000/Makefile
+
3
−
3
View file @
f805548b
...
...
@@ -26,9 +26,9 @@
include
$(TOPDIR)/config.mk
LIB
=
$(
obj
)
lib
$(
BOARD
)
.
a
LIB
=
$(
obj
)
lib
$(
BOARD
)
.
o
COBJS-y
+=
top9000
.o
COBJS-y
+=
$(
BOARD
)
.o
COBJS-$(CONFIG_ATMEL_SPI)
+=
spi.o
SRCS
:=
$(
SOBJS:.o
=
.S
)
$(
COBJS-y:.o
=
.c
)
...
...
@@ -36,7 +36,7 @@ OBJS := $(addprefix $(obj),$(COBJS-y))
SOBJS
:=
$(
addprefix
$(
obj
)
,
$(
SOBJS
))
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS)
$(
AR
)
$(
ARFLAGS
)
$@
$(
OBJS
)
$(
SOBJS
)
$(
call cmd_link_o_target,
$(
OBJS
)
$(
SOBJS
)
)
clean
:
rm
-f
$(
SOBJS
)
$(
OBJS
)
...
...
This diff is collapsed.
Click to expand it.
board/emk/top9000/top9000.c
+
1
−
1
View file @
f805548b
...
...
@@ -120,7 +120,7 @@ int board_mmc_getcd(u8 *cd, struct mmc *mmc)
int
board_early_init_f
(
void
)
{
at91_shdwn
_t
*
shdwn
=
(
at91_shdwn
_t
*
)
AT91_SHDWN_BASE
;
struct
at91_shdwn
*
shdwn
=
(
struct
at91_shdwn
*
)
AT91_SHDWN_BASE
;
/*
* make sure the board can be powered on by
...
...
This diff is collapsed.
Click to expand it.
include/configs/top9000.h
+
2
−
2
View file @
f805548b
...
...
@@ -40,9 +40,9 @@
/*
* Warning: changing CONFIG_SYS_TEXT_BASE requires
* adapting the initial boot program
* adapting the initial boot program
.
*/
#define CONFIG_SYS_TEXT_BASE 0x2
1f
00000
/*
31 MB into
RAM */
#define CONFIG_SYS_TEXT_BASE 0x2
00
00000
/*
start of SD
RAM */
/* Command line configuration */
#include
<config_cmd_default.h>
...
...
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