Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SPARC U-Boot Custodian Tree
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
U-Boot
Custodians
SPARC U-Boot Custodian Tree
Commits
20aacbf0
Commit
20aacbf0
authored
Dec 16, 2004
by
stroese
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CPCIISER4 board update
parent
7acd6c21
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
board/esd/cpciiser4/Makefile
board/esd/cpciiser4/Makefile
+1
-1
board/esd/cpciiser4/cpciiser4.c
board/esd/cpciiser4/cpciiser4.c
+10
-5
No files found.
board/esd/cpciiser4/Makefile
View file @
20aacbf0
...
...
@@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk
LIB
=
lib
$(BOARD)
.a
OBJS
=
$(BOARD)
.o flash.o
OBJS
=
$(BOARD)
.o flash.o
../common/misc.o
$(LIB)
:
$(OBJS) $(SOBJS)
$(AR)
crv
$@
$(OBJS)
...
...
board/esd/cpciiser4/cpciiser4.c
View file @
20aacbf0
...
...
@@ -29,6 +29,7 @@
/*cmd_boot.c*/
extern
int
do_reset
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
extern
void
lxt971_no_sleep
(
void
);
/* ------------------------------------------------------------------------- */
...
...
@@ -157,13 +158,12 @@ int checkboard (void)
puts
(
"Board: "
);
if
(
!
i
||
strncmp
(
str
,
"CPCIISER4"
,
9
))
{
puts
(
"### No HW ID - assuming CPCIISER4
\n
"
);
return
(
0
);
if
(
i
==
-
1
)
{
puts
(
"### No HW ID - assuming AR405"
);
}
else
{
puts
(
str
);
}
puts
(
str
);
puts
(
"
\n
FPGA: "
);
/* display infos on fpgaimage */
...
...
@@ -176,6 +176,11 @@ int checkboard (void)
putc
(
'\n'
);
/*
* Disable sleep mode in LXT971
*/
lxt971_no_sleep
();
return
0
;
}
...
...
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