summaryrefslogtreecommitdiff
path: root/board/spear
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-02-04 08:24:25 (GMT)
committerTom Rini <trini@ti.com>2014-02-19 16:07:50 (GMT)
commit7c8278a866122ef6c1201b94cd602f98cc649a2f (patch)
treeb437709eca74cde4fd5febe614c4bc39c9fe2074 /board/spear
parent9e4140329ee9a787d0f96ac2829d618d47f7973f (diff)
downloadu-boot-7c8278a866122ef6c1201b94cd602f98cc649a2f.tar.xz
kbuild: add dummy obj-y to create built-in.o
We are going to switch over to Kbuild in upcoming commits. Each makefile must have non-empty obj- or obj-y to generate built-in.o on Kbuild. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'board/spear')
-rw-r--r--board/spear/common/Makefile5
-rw-r--r--board/spear/x600/Makefile5
2 files changed, 8 insertions, 2 deletions
diff --git a/board/spear/common/Makefile b/board/spear/common/Makefile
index 08dc09f..b0ba320 100644
--- a/board/spear/common/Makefile
+++ b/board/spear/common/Makefile
@@ -5,7 +5,10 @@
# SPDX-License-Identifier: GPL-2.0+
#
-ifndef CONFIG_SPL_BUILD
+ifdef CONFIG_SPL_BUILD
+# necessary to create built-in.o
+obj- := __dummy__.o
+else
obj-y := spr_misc.o
obj-y += spr_lowlevel_init.o
endif
diff --git a/board/spear/x600/Makefile b/board/spear/x600/Makefile
index f9053fe..18d3dd2 100644
--- a/board/spear/x600/Makefile
+++ b/board/spear/x600/Makefile
@@ -5,6 +5,9 @@
# SPDX-License-Identifier: GPL-2.0+
#
-ifndef CONFIG_SPL_BUILD
+ifdef CONFIG_SPL_BUILD
+# necessary to create built-in.o
+obj- := __dummy__.o
+else
obj-y := fpga.o x600.o
endif