Makefile 3.6 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.
#

M
Michael Buesch 已提交
8
obj-y				+= gpio/
9
obj-$(CONFIG_PCI)		+= pci/
L
Linus Torvalds 已提交
10
obj-$(CONFIG_PARISC)		+= parisc/
M
Matt Porter 已提交
11
obj-$(CONFIG_RAPIDIO)		+= rapidio/
L
Linus Torvalds 已提交
12
obj-y				+= video/
13
obj-y				+= idle/
L
Len Brown 已提交
14
obj-$(CONFIG_ACPI)		+= acpi/
15
obj-$(CONFIG_SFI)		+= sfi/
L
Linus Torvalds 已提交
16 17 18
# 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/
19
obj-$(CONFIG_ARM_AMBA)		+= amba/
L
Linus Walleij 已提交
20 21 22
# Many drivers will want to use DMA so this has to be made available
# really early.
obj-$(CONFIG_DMA_ENGINE)	+= dma/
L
Linus Torvalds 已提交
23

S
Stijn Tintel 已提交
24
obj-$(CONFIG_VIRTIO)		+= virtio/
25 26
obj-$(CONFIG_XEN)		+= xen/

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

30
# tty/ comes before char/ so that the VT console is the boot-time
L
Linus Torvalds 已提交
31
# default.
32
obj-y				+= tty/
L
Linus Torvalds 已提交
33 34
obj-y				+= char/

35 36 37
# gpu/ comes after char for AGP vs DRM startup
obj-y				+= gpu/

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

L
Linus Torvalds 已提交
40 41 42 43 44
# i810fb and intelfb depend on char/agp/
obj-$(CONFIG_FB_I810)           += video/i810/
obj-$(CONFIG_FB_INTEL)          += video/intelfb/

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

obj-$(CONFIG_HWSPINLOCK)	+= hwspinlock/
125
obj-$(CONFIG_NFC)		+= nfc/
126
obj-$(CONFIG_IOMMU_SUPPORT)	+= iommu/
127 128 129

# Virtualization drivers
obj-$(CONFIG_VIRT_DRIVERS)	+= virt/