aboutsummaryrefslogtreecommitdiffstats
path: root/arch/xtensa/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/xtensa/Makefile')
-rw-r--r--arch/xtensa/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/xtensa/Makefile b/arch/xtensa/Makefile
index ab63c9beb930..227f658fc2b9 100644
--- a/arch/xtensa/Makefile
+++ b/arch/xtensa/Makefile
@@ -79,6 +79,10 @@ core-y += $(buildvar) $(buildplf)
79 79
80libs-y += arch/xtensa/lib/ $(LIBGCC) 80libs-y += arch/xtensa/lib/ $(LIBGCC)
81 81
82ifneq ($(CONFIG_BUILTIN_DTB),"")
83core-y += arch/xtensa/boot/
84endif
85
82boot := arch/xtensa/boot 86boot := arch/xtensa/boot
83 87
84all: zImage 88all: zImage
@@ -88,6 +92,9 @@ bzImage : zImage
88zImage: vmlinux 92zImage: vmlinux
89 $(Q)$(MAKE) $(build)=$(boot) $@ 93 $(Q)$(MAKE) $(build)=$(boot) $@
90 94
95%.dtb:
96 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
97
91define archhelp 98define archhelp
92 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)' 99 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
93endef 100endef