Makefile 4.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
#
# Makefile for the Linux kernel device drivers.
#
# 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
# Rewritten to use lists instead of if-statements.
#

8
obj-y				+= irqchip/
9
obj-y				+= bus/
10

11 12
# GPIO must come after pinctrl as gpios may need to mux pins etc
obj-y				+= pinctrl/
M
Michael Buesch 已提交
13
obj-y				+= gpio/
S
Sascha Hauer 已提交
14
obj-y				+= pwm/
15
obj-$(CONFIG_PCI)		+= pci/
L
Linus Torvalds 已提交
16
obj-$(CONFIG_PARISC)		+= parisc/
M
Matt Porter 已提交
17
obj-$(CONFIG_RAPIDIO)		+= rapidio/
L
Linus Torvalds 已提交
18
obj-y				+= video/
19
obj-y				+= idle/
M
Matthew Garrett 已提交
20 21 22 23

# IPMI must come before ACPI in order to provide IPMI opregion support
obj-$(CONFIG_IPMI_HANDLER)	+= char/ipmi/

L
Len Brown 已提交
24
obj-$(CONFIG_ACPI)		+= acpi/
25
obj-$(CONFIG_SFI)		+= sfi/
L
Linus Torvalds 已提交
26 27 28
# PnP must come after ACPI since it will eventually need to check if acpi
# was used and do nothing if so
obj-$(CONFIG_PNP)		+= pnp/
H
Hiroshi DOYU 已提交
29
obj-y				+= amba/
L
Linus Walleij 已提交
30 31 32
# Many drivers will want to use DMA so this has to be made available
# really early.
obj-$(CONFIG_DMA_ENGINE)	+= dma/
L
Linus Torvalds 已提交
33

S
Stijn Tintel 已提交
34
obj-$(CONFIG_VIRTIO)		+= virtio/
35 36
obj-$(CONFIG_XEN)		+= xen/

D
David Brownell 已提交
37 38 39
# regulators early, since some subsystems rely on them to initialize
obj-$(CONFIG_REGULATOR)		+= regulator/

40
# tty/ comes before char/ so that the VT console is the boot-time
L
Linus Torvalds 已提交
41
# default.
42
obj-y				+= tty/
L
Linus Torvalds 已提交
43 44
obj-y				+= char/

45 46 47
# gpu/ comes after char for AGP vs DRM startup
obj-y				+= gpu/

E
Evgeniy Polyakov 已提交
48 49
obj-$(CONFIG_CONNECTOR)		+= connector/

L
Linus Torvalds 已提交
50 51 52 53 54
# i810fb and intelfb depend on char/agp/
obj-$(CONFIG_FB_I810)           += video/i810/
obj-$(CONFIG_FB_INTEL)          += video/intelfb/

obj-$(CONFIG_PARPORT)		+= parport/
55
obj-y				+= base/ block/ misc/ mfd/ nfc/
L
Linus Torvalds 已提交
56
obj-$(CONFIG_NUBUS)		+= nubus/
57
obj-y				+= macintosh/
L
Linus Torvalds 已提交
58 59
obj-$(CONFIG_IDE)		+= ide/
obj-$(CONFIG_SCSI)		+= scsi/
J
Jeff Garzik 已提交
60
obj-$(CONFIG_ATA)		+= ata/
61
obj-$(CONFIG_TARGET_CORE)	+= target/
62 63
obj-$(CONFIG_MTD)		+= mtd/
obj-$(CONFIG_SPI)		+= spi/
64
obj-y				+= hsi/
65 66
obj-y				+= net/
obj-$(CONFIG_ATM)		+= atm/
L
Linus Torvalds 已提交
67
obj-$(CONFIG_FUSION)		+= message/
68
obj-y				+= firewire/
H
Hans J. Koch 已提交
69
obj-$(CONFIG_UIO)		+= uio/
A
Alex Williamson 已提交
70
obj-$(CONFIG_VFIO)		+= vfio/
L
Linus Torvalds 已提交
71
obj-y				+= cdrom/
72
obj-y				+= auxdisplay/
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80
obj-$(CONFIG_PCCARD)		+= pcmcia/
obj-$(CONFIG_DIO)		+= dio/
obj-$(CONFIG_SBUS)		+= sbus/
obj-$(CONFIG_ZORRO)		+= zorro/
obj-$(CONFIG_MAC)		+= macintosh/
obj-$(CONFIG_ATA_OVER_ETH)	+= block/aoe/
obj-$(CONFIG_PARIDE) 		+= block/paride/
obj-$(CONFIG_TC)		+= tc/
D
David Vrabel 已提交
81
obj-$(CONFIG_UWB)		+= uwb/
82
obj-$(CONFIG_USB_OTG_UTILS)	+= usb/
L
Linus Torvalds 已提交
83
obj-$(CONFIG_USB)		+= usb/
84
obj-$(CONFIG_PCI)		+= usb/
85
obj-$(CONFIG_USB_GADGET)	+= usb/
86
obj-$(CONFIG_SERIO)		+= input/serio/
L
Linus Torvalds 已提交
87 88 89
obj-$(CONFIG_GAMEPORT)		+= input/gameport/
obj-$(CONFIG_INPUT)		+= input/
obj-$(CONFIG_I2O)		+= message/
90
obj-$(CONFIG_RTC_LIB)		+= rtc/
91
obj-y				+= i2c/ media/
R
Rodolfo Giometti 已提交
92
obj-$(CONFIG_PPS)		+= pps/
93
obj-$(CONFIG_PTP_1588_CLOCK)	+= ptp/
L
Linus Torvalds 已提交
94
obj-$(CONFIG_W1)		+= w1/
95
obj-$(CONFIG_POWER_SUPPLY)	+= power/
96
obj-$(CONFIG_HWMON)		+= hwmon/
Z
Zhang Rui 已提交
97
obj-$(CONFIG_THERMAL)		+= thermal/
W
Wim Van Sebroeck 已提交
98
obj-$(CONFIG_WATCHDOG)		+= watchdog/
L
Linus Torvalds 已提交
99 100
obj-$(CONFIG_MD)		+= md/
obj-$(CONFIG_BT)		+= bluetooth/
101
obj-$(CONFIG_ACCESSIBILITY)	+= accessibility/
L
Linus Torvalds 已提交
102
obj-$(CONFIG_ISDN)		+= isdn/
A
Alan Cox 已提交
103
obj-$(CONFIG_EDAC)		+= edac/
L
Linus Torvalds 已提交
104
obj-$(CONFIG_EISA)		+= eisa/
105
obj-y				+= lguest/
L
Linus Torvalds 已提交
106
obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
107
obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
108
obj-y				+= mmc/
109
obj-$(CONFIG_MEMSTICK)		+= memstick/
110
obj-y				+= leds/
L
Linus Torvalds 已提交
111
obj-$(CONFIG_INFINIBAND)	+= infiniband/
112
obj-$(CONFIG_SGI_SN)		+= sn/
L
Linus Torvalds 已提交
113 114
obj-y				+= firmware/
obj-$(CONFIG_CRYPTO)		+= crypto/
115
obj-$(CONFIG_SUPERH)		+= sh/
116
obj-$(CONFIG_ARCH_SHMOBILE)	+= sh/
J
John Stultz 已提交
117 118 119
ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
obj-y				+= clocksource/
endif
120
obj-$(CONFIG_DCA)		+= dca/
J
Jiri Kosina 已提交
121
obj-$(CONFIG_HID)		+= hid/
122
obj-$(CONFIG_PPC_PS3)		+= ps3/
123
obj-$(CONFIG_OF)		+= of/
124
obj-$(CONFIG_SSB)		+= ssb/
125
obj-$(CONFIG_BCMA)		+= bcma/
126
obj-$(CONFIG_VHOST_NET)		+= vhost/
127
obj-$(CONFIG_VLYNQ)		+= vlynq/
128
obj-$(CONFIG_STAGING)		+= staging/
129
obj-y				+= platform/
130 131
#common clk code
obj-y				+= clk/
132 133

obj-$(CONFIG_HWSPINLOCK)	+= hwspinlock/
134
obj-$(CONFIG_NFC)		+= nfc/
135
obj-$(CONFIG_IOMMU_SUPPORT)	+= iommu/
136
obj-$(CONFIG_REMOTEPROC)	+= remoteproc/
137
obj-$(CONFIG_RPMSG)		+= rpmsg/
138 139 140

# Virtualization drivers
obj-$(CONFIG_VIRT_DRIVERS)	+= virt/
141
obj-$(CONFIG_HYPERV)		+= hv/
142 143

obj-$(CONFIG_PM_DEVFREQ)	+= devfreq/
144
obj-$(CONFIG_EXTCON)		+= extcon/
145
obj-$(CONFIG_MEMORY)		+= memory/
146
obj-$(CONFIG_IIO)		+= iio/
147
obj-$(CONFIG_VME_BUS)		+= vme/