summaryrefslogtreecommitdiff
path: root/arch/sh/lib/Makefile
diff options
context:
space:
mode:
authorNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>2010-12-08 04:49:12 (GMT)
committerNobuhiro Iwamatsu <iwamatsu@nigauri.org>2011-01-11 12:03:26 (GMT)
commit45ce6f9e35663ea69fcb268e18e9e7f9fda4881d (patch)
treeed6c0b5b6dc68a77aaccb4fec6b3b25e4a12ed59 /arch/sh/lib/Makefile
parent9980df5616a1561460ea079451db1b57c96131f5 (diff)
downloadu-boot-fsl-qoriq-45ce6f9e35663ea69fcb268e18e9e7f9fda4881d.tar.xz
sh: Add support zimageboot command for Renesas SH
Curent U-Boot can boot zImage by use the "go" command. But this is not right method. And this method can not set command-line to linux kernel. zimageboot sets command-line in environment of u-boot in linux kernel, and provides function to boot it. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Diffstat (limited to 'arch/sh/lib/Makefile')
-rw-r--r--arch/sh/lib/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile
index 7f60396..c0670cb 100644
--- a/arch/sh/lib/Makefile
+++ b/arch/sh/lib/Makefile
@@ -31,6 +31,9 @@ COBJS-y += time_sh2.o
else
COBJS-y += time.o
endif
+ifeq ($(CONFIG_CMD_SH_ZIMAGEBOOT),y)
+COBJS-y += zimageboot.o
+endif
SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))