blob: c67013c10204b40c0f54e380e33a0dd5beb48afb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#
# Makefile for the linux kernel.
#
# Object file lists.
obj-y += core.o timer.o irq.o dma.o clock.o pinmux.o devices.o \
lradc.o spi.o mmc.o \
power-test.o
obj-$(CONFIG_ARCH_STMP378X) += dcp-bootstream.o usb_common.o utmixc.o
obj-$(CONFIG_IRAM_ALLOC) += iram.o
# Power Management
obj-$(CONFIG_CPU_FREQ) += cpufreq.o
obj-$(CONFIG_STMP3XXX_UNIQUE_ID) += unique-id.o
ifneq ($(strip $(CONFIG_USB_GADGET_ARC) $(CONFIG_USB_EHCI_ARC_OTG)),)
obj-y += usb_dr.o
endif
# charging/current limitation testing
obj-m += power-test.o
|