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

8
obj-$(CONFIG_PCI)		+= pci/
L
Linus Torvalds 已提交
9
obj-$(CONFIG_PARISC)		+= parisc/
M
Matt Porter 已提交
10
obj-$(CONFIG_RAPIDIO)		+= rapidio/
L
Linus Torvalds 已提交
11
obj-y				+= video/
L
Len Brown 已提交
12
obj-$(CONFIG_ACPI)		+= acpi/
L
Linus Torvalds 已提交
13 14 15
# 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/
16
obj-$(CONFIG_ARM_AMBA)		+= amba/
L
Linus Torvalds 已提交
17

18 19
obj-$(CONFIG_XEN)		+= xen/

L
Linus Torvalds 已提交
20 21 22 23
# char/ comes before serial/ etc so that the VT console is the boot-time
# default.
obj-y				+= char/

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

L
Linus Torvalds 已提交
26 27 28 29 30 31
# i810fb and intelfb depend on char/agp/
obj-$(CONFIG_FB_I810)           += video/i810/
obj-$(CONFIG_FB_INTEL)          += video/intelfb/

obj-y				+= serial/
obj-$(CONFIG_PARPORT)		+= parport/
32
obj-y				+= base/ block/ misc/ mfd/ net/ media/
L
Linus Torvalds 已提交
33 34
obj-$(CONFIG_NUBUS)		+= nubus/
obj-$(CONFIG_ATM)		+= atm/
35
obj-y				+= macintosh/
L
Linus Torvalds 已提交
36 37
obj-$(CONFIG_IDE)		+= ide/
obj-$(CONFIG_SCSI)		+= scsi/
J
Jeff Garzik 已提交
38
obj-$(CONFIG_ATA)		+= ata/
L
Linus Torvalds 已提交
39
obj-$(CONFIG_FUSION)		+= message/
40
obj-$(CONFIG_FIREWIRE)		+= firewire/
41
obj-y				+= ieee1394/
H
Hans J. Koch 已提交
42
obj-$(CONFIG_UIO)		+= uio/
L
Linus Torvalds 已提交
43
obj-y				+= cdrom/
44
obj-y				+= auxdisplay/
L
Linus Torvalds 已提交
45
obj-$(CONFIG_MTD)		+= mtd/
46
obj-$(CONFIG_SPI)		+= spi/
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55
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/
obj-$(CONFIG_USB)		+= usb/
56
obj-$(CONFIG_PCI)		+= usb/
L
Linus Torvalds 已提交
57
obj-$(CONFIG_USB_GADGET)	+= usb/gadget/
58
obj-$(CONFIG_SERIO)		+= input/serio/
L
Linus Torvalds 已提交
59 60 61
obj-$(CONFIG_GAMEPORT)		+= input/gameport/
obj-$(CONFIG_INPUT)		+= input/
obj-$(CONFIG_I2O)		+= message/
62
obj-$(CONFIG_RTC_LIB)		+= rtc/
63
obj-y				+= i2c/
L
Linus Torvalds 已提交
64
obj-$(CONFIG_W1)		+= w1/
65
obj-$(CONFIG_POWER_SUPPLY)	+= power/
66
obj-$(CONFIG_HWMON)		+= hwmon/
W
Wim Van Sebroeck 已提交
67
obj-$(CONFIG_WATCHDOG)		+= watchdog/
L
Linus Torvalds 已提交
68 69 70 71
obj-$(CONFIG_PHONE)		+= telephony/
obj-$(CONFIG_MD)		+= md/
obj-$(CONFIG_BT)		+= bluetooth/
obj-$(CONFIG_ISDN)		+= isdn/
A
Alan Cox 已提交
72
obj-$(CONFIG_EDAC)		+= edac/
L
Linus Torvalds 已提交
73 74
obj-$(CONFIG_MCA)		+= mca/
obj-$(CONFIG_EISA)		+= eisa/
75
obj-y				+= lguest/
L
Linus Torvalds 已提交
76
obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
77
obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
L
Linus Torvalds 已提交
78
obj-$(CONFIG_MMC)		+= mmc/
R
Richard Purdie 已提交
79
obj-$(CONFIG_NEW_LEDS)		+= leds/
L
Linus Torvalds 已提交
80
obj-$(CONFIG_INFINIBAND)	+= infiniband/
81
obj-$(CONFIG_SGI_SN)		+= sn/
L
Linus Torvalds 已提交
82 83
obj-y				+= firmware/
obj-$(CONFIG_CRYPTO)		+= crypto/
84
obj-$(CONFIG_SUPERH)		+= sh/
85
obj-$(CONFIG_GENERIC_TIME)	+= clocksource/
C
Chris Leech 已提交
86
obj-$(CONFIG_DMA_ENGINE)	+= dma/
87
obj-$(CONFIG_DCA)		+= dca/
J
Jiri Kosina 已提交
88
obj-$(CONFIG_HID)		+= hid/
89
obj-$(CONFIG_PPC_PS3)		+= ps3/
90
obj-$(CONFIG_OF)		+= of/
91
obj-$(CONFIG_SSB)		+= ssb/
R
Rusty Russell 已提交
92
obj-$(CONFIG_VIRTIO)		+= virtio/