Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
8546e239
Commit
8546e239
authored
May 02, 2006
by
Wolfgang Denk
Browse files
Declare load_serial_ymodem() when using CFG_CMD_LOADB.
Patch by Jon Loeliger, 01. May 2006
parent
3577d3a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
8546e239
...
...
@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
======================================================================
* Declare load_serial_ymodem() when using CFG_CMD_LOADB.
Patch by Jon Loeliger, 01. May 2006
* Fixed handling of bad checksums with "mkimage -l"
* Added support for BC3450 board
...
...
common/cmd_load.c
View file @
8546e239
...
...
@@ -33,9 +33,12 @@
DECLARE_GLOBAL_DATA_PTR
;
#if (CONFIG_COMMANDS & CFG_CMD_LOADB)
static
ulong
load_serial_ymodem
(
ulong
offset
);
#endif
#if (CONFIG_COMMANDS & CFG_CMD_LOADS)
static
ulong
load_serial
(
ulong
offset
);
static
ulong
load_serial_ymodem
(
ulong
offset
);
static
int
read_record
(
char
*
buf
,
ulong
len
);
# if (CONFIG_COMMANDS & CFG_CMD_SAVES)
static
int
save_serial
(
ulong
offset
,
ulong
size
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment