mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-01-31 03:03:16 +01:00
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>
|
||
|---|---|---|
| .. | ||
| _ashldi3.S | ||
| _ashrdi3.S | ||
| _lshrdi3.S | ||
| bat_rw.c | ||
| board.c | ||
| bootm.c | ||
| cache.c | ||
| extable.c | ||
| ide.c | ||
| ide.h | ||
| interrupts.c | ||
| kgdb.c | ||
| Makefile | ||
| memcpy_mpc5200.c | ||
| ppccache.S | ||
| ppcstring.S | ||
| reloc.S | ||
| spl.c | ||
| ticks.S | ||
| time.c | ||