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>
master
Masahiro Yamada 10 years ago committed by Tom Rini
parent 9e4140329e
commit 7c8278a866
  1. 3
      arch/arm/cpu/armv7/tegra114/Makefile
  2. 3
      arch/arm/cpu/armv7/tegra30/Makefile
  3. 3
      arch/nds32/cpu/n1213/Makefile
  4. 5
      board/freescale/common/Makefile
  5. 3
      board/samsung/origen/Makefile
  6. 3
      board/samsung/smdkv310/Makefile
  7. 5
      board/spear/common/Makefile
  8. 5
      board/spear/x600/Makefile

@ -17,4 +17,5 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
obj- :=
# necessary to create built-in.o
obj- := __dummy__.o

@ -17,4 +17,5 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
obj- :=
# necessary to create built-in.o
obj- := __dummy__.o

@ -9,4 +9,7 @@
# SPDX-License-Identifier: GPL-2.0+
#
# necessary to create built-in.o
obj- := __dummy__.o
extra-y = start.o

@ -13,7 +13,10 @@ MINIMAL=y
endif
endif
ifndef MINIMAL
ifdef MINIMAL
# necessary to create built-in.o
obj- := __dummy__.o
else
obj-$(CONFIG_FSL_CADMUS) += cadmus.o
obj-$(CONFIG_FSL_VIA) += cds_via.o
obj-$(CONFIG_FMAN_ENET) += fman.o

@ -5,6 +5,9 @@
#
ifdef CONFIG_SPL_BUILD
# necessary to create built-in.o
obj- := __dummy__.o
hostprogs-y := tools/mkorigenspl
always := $(hostprogs-y)

@ -5,6 +5,9 @@
#
ifdef CONFIG_SPL_BUILD
# necessary to create built-in.o
obj- := __dummy__.o
hostprogs-y := tools/mksmdkv310spl
always := $(hostprogs-y)
else

@ -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

@ -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

Loading…
Cancel
Save