2008-02-01 07:37:56 +00:00
|
|
|
#
|
|
|
|
# Makefile for the m68knommu kernel.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# If you want to play with the HW breakpoints then you will
|
|
|
|
# need to add define this, which will give you a stack backtrace
|
|
|
|
# on the console port whenever a DBG interrupt occurs. You have to
|
|
|
|
# set up you HW breakpoints to trigger a DBG interrupt:
|
|
|
|
#
|
2010-09-23 06:50:45 +00:00
|
|
|
# ccflags-y := -DTRAP_DBG_INTERRUPT
|
|
|
|
# asflags-y := -DTRAP_DBG_INTERRUPT
|
2008-02-01 07:37:56 +00:00
|
|
|
#
|
|
|
|
|
2008-02-15 03:31:26 +00:00
|
|
|
asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
|
2008-02-01 07:37:56 +00:00
|
|
|
|
2011-12-23 15:17:10 +00:00
|
|
|
obj-$(CONFIG_COLDFIRE) += cache.o clk.o device.o dma.o entry.o vectors.o
|
2012-04-17 05:21:31 +00:00
|
|
|
obj-$(CONFIG_M5206) += m5206.o timers.o intc.o reset.o
|
|
|
|
obj-$(CONFIG_M5206e) += m5206.o timers.o intc.o reset.o
|
2012-04-17 05:25:44 +00:00
|
|
|
obj-$(CONFIG_M520x) += m520x.o pit.o intc-simr.o reset.o
|
2012-04-17 05:29:34 +00:00
|
|
|
obj-$(CONFIG_M523x) += m523x.o pit.o dma_timer.o intc-2.o reset.o
|
2012-04-17 05:31:48 +00:00
|
|
|
obj-$(CONFIG_M5249) += m5249.o timers.o intc.o intc-5249.o reset.o
|
2012-04-17 05:33:57 +00:00
|
|
|
obj-$(CONFIG_M527x) += m527x.o pit.o intc-2.o reset.o
|
2012-04-17 05:33:13 +00:00
|
|
|
obj-$(CONFIG_M5272) += m5272.o intc-5272.o timers.o
|
2012-04-17 05:35:01 +00:00
|
|
|
obj-$(CONFIG_M528x) += m528x.o pit.o intc-2.o reset.o
|
2012-04-17 05:36:11 +00:00
|
|
|
obj-$(CONFIG_M5307) += m5307.o timers.o intc.o reset.o
|
2012-02-19 06:47:24 +00:00
|
|
|
obj-$(CONFIG_M532x) += timers.o intc-simr.o reset.o
|
2012-04-17 05:37:05 +00:00
|
|
|
obj-$(CONFIG_M5407) += m5407.o timers.o intc.o reset.o
|
2010-11-02 02:05:29 +00:00
|
|
|
obj-$(CONFIG_M54xx) += sltimers.o intc-2.o
|
2008-02-01 07:37:56 +00:00
|
|
|
|
2012-04-17 05:36:11 +00:00
|
|
|
obj-$(CONFIG_NETtel) += nettel.o
|
|
|
|
obj-$(CONFIG_CLEOPATRA) += nettel.o
|
|
|
|
|
2009-06-20 01:11:00 +00:00
|
|
|
obj-y += pinmux.o gpio.o
|
2008-02-01 07:37:56 +00:00
|
|
|
extra-y := head.o
|