All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] common: build ymodem only on need
@ 2018-02-13  8:07 Jun Nie
  2018-11-10 17:42 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Jun Nie @ 2018-02-13  8:07 UTC (permalink / raw)
  To: u-boot

Build ymodem only on need to shrink spl image size.

Signed-off-by: Jun Nie <jun.nie@linaro.org>
---
 common/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/common/Makefile b/common/Makefile
index c7bde23..0614348 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -133,4 +133,5 @@ 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
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] common: build ymodem only on need
  2018-02-13  8:07 [U-Boot] [PATCH] common: build ymodem only on need Jun Nie
@ 2018-11-10 17:42 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2018-11-10 17:42 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 13, 2018 at 04:07:55PM +0800, Jun Nie wrote:

> Build ymodem only on need to shrink spl image size.
> 
> Signed-off-by: Jun Nie <jun.nie@linaro.org>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20181110/f15e878f/attachment.sig>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-10 17:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-13  8:07 [U-Boot] [PATCH] common: build ymodem only on need Jun Nie
2018-11-10 17:42 ` [U-Boot] " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.