projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b0afcc
)
common: build ymodem only on need
author
Jun Nie
<jun.nie@linaro.org>
Tue, 13 Feb 2018 08:07:55 +0000
(16:07 +0800)
committer
Tom Rini
<trini@konsulko.com>
Fri, 9 Nov 2018 18:45:42 +0000
(13:45 -0500)
Build ymodem only on need to shrink spl image size.
Signed-off-by: Jun Nie <jun.nie@linaro.org>
common/Makefile
patch
|
blob
|
history
diff --git
a/common/Makefile
b/common/Makefile
index
7473b85
..
a238836
100644
(file)
--- a/
common/Makefile
+++ b/
common/Makefile
@@
-121,6
+121,7
@@
obj-y += command.o
obj-$(CONFIG_$(SPL_)LOG) += log.o
obj-$(CONFIG_$(SPL_)LOG_CONSOLE) += log_console.o
obj-y += s_record.o
-obj-y += xyzModem.o
+obj-$(CONFIG_CMD_LOADB) += xyzModem.o
+obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += xyzModem.o
obj-$(CONFIG_AVB_VERIFY) += avb_verify.o