mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 19:16:16 +02:00
29 lines
632 B
Makefile
29 lines
632 B
Makefile
#
|
|
# Makefile for the Ingenic JZ4740.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y += prom.o irq.o time.o reset.o setup.o dma.o \
|
|
gpio.o clock.o platform.o
|
|
|
|
obj-$(CONFIG_PROC_FS) += proc.o
|
|
|
|
# board specific support
|
|
|
|
obj-$(CONFIG_JZ4740_PAVO) += board-pavo.o
|
|
obj-$(CONFIG_JZ4740_LEO) += board-leo.o
|
|
obj-$(CONFIG_JZ4740_LYRA) += board-lyra.o
|
|
obj-$(CONFIG_JZ4725_DIPPER) += board-dipper.o
|
|
obj-$(CONFIG_JZ4720_VIRGO) += board-virgo.o
|
|
obj-$(CONFIG_JZ4740_QI_LB60) += board-qi_lb60.o
|
|
obj-$(CONFIG_JZ4740_N526) += board-n526.o
|
|
|
|
# PM support
|
|
|
|
obj-$(CONFIG_PM) +=pm.o
|
|
|
|
# CPU Frequency scaling support
|
|
|
|
obj-$(CONFIG_CPU_FREQ_JZ) +=cpufreq.o
|