Note:
arch/powerpc/cpu/mpc8260/Makefile is originally like follows:
---<snip>---
START = start.o kgdb.o
COBJS = traps.o serial_smc.o serial_scc.o cpu.o cpu_init.o speed.o \
---<snip>---
COBJS-$(CONFIG_ETHER_ON_SCC) = ether_scc.o
---<snip>---
$(LIB): $(OBJS)
$(call cmd_link_o_target, $(OBJS) $(obj)kgdb.o)
The link rule `$(call cmd_link_o_target, $(OBJS) $(obj)kgdb.o)'
is weird.
kbdg.o is not included in $(OBJS) but linked into $(LIB)
and $(LIB) is not dependent on kgdb.o.
(Broken dependency tracking)
So,
START = start.o kgdb.o
shoud have been
START = start.o
SOBJS = kgdb.o
That is why this commit adds kgdb.o to obj-y, not to extra-y.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Stefan Roese <sr@denx.de>
25 lines
518 B
Makefile
25 lines
518 B
Makefile
#
|
|
# (C) Copyright 2007-2009 DENX Software Engineering
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
$(shell mkdir -p $(OBJTREE)/board/freescale/common)
|
|
|
|
extra-y = start.o
|
|
obj-y := cpu.o
|
|
obj-y += traps.o
|
|
obj-y += cpu_init.o
|
|
obj-y += fixed_sdram.o
|
|
obj-y += i2c.o
|
|
obj-y += interrupts.o
|
|
obj-y += iopin.o
|
|
obj-y += serial.o
|
|
obj-y += speed.o
|
|
obj-$(CONFIG_FSL_DIU_FB) += diu.o
|
|
obj-$(CONFIG_CMD_IDE) += ide.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
|
|
# Stub implementations of cache management functions for USB
|
|
obj-$(CONFIG_USB_EHCI) += cache.o
|