]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # Makefile for the Linux kernel device drivers. | |
3 | # | |
4 | # 15 Sep 2000, Christoph Hellwig <[email protected]> | |
5 | # Rewritten to use lists instead of if-statements. | |
6 | # | |
7 | ||
8 | # GPIO must come after pinctrl as gpios may need to mux pins etc | |
9 | obj-y += pinctrl/ | |
10 | obj-y += gpio/ | |
11 | obj-y += pwm/ | |
12 | obj-$(CONFIG_PCI) += pci/ | |
13 | obj-$(CONFIG_PARISC) += parisc/ | |
14 | obj-$(CONFIG_RAPIDIO) += rapidio/ | |
15 | obj-y += video/ | |
16 | obj-y += idle/ | |
17 | obj-$(CONFIG_ACPI) += acpi/ | |
18 | obj-$(CONFIG_SFI) += sfi/ | |
19 | # PnP must come after ACPI since it will eventually need to check if acpi | |
20 | # was used and do nothing if so | |
21 | obj-$(CONFIG_PNP) += pnp/ | |
22 | obj-y += amba/ | |
23 | # Many drivers will want to use DMA so this has to be made available | |
24 | # really early. | |
25 | obj-$(CONFIG_DMA_ENGINE) += dma/ | |
26 | ||
27 | obj-$(CONFIG_VIRTIO) += virtio/ | |
28 | obj-$(CONFIG_XEN) += xen/ | |
29 | ||
30 | # regulators early, since some subsystems rely on them to initialize | |
31 | obj-$(CONFIG_REGULATOR) += regulator/ | |
32 | ||
33 | # tty/ comes before char/ so that the VT console is the boot-time | |
34 | # default. | |
35 | obj-y += tty/ | |
36 | obj-y += char/ | |
37 | ||
38 | # gpu/ comes after char for AGP vs DRM startup | |
39 | obj-y += gpu/ | |
40 | ||
41 | obj-$(CONFIG_CONNECTOR) += connector/ | |
42 | ||
43 | # i810fb and intelfb depend on char/agp/ | |
44 | obj-$(CONFIG_FB_I810) += video/i810/ | |
45 | obj-$(CONFIG_FB_INTEL) += video/intelfb/ | |
46 | ||
47 | obj-$(CONFIG_PARPORT) += parport/ | |
48 | obj-y += base/ block/ misc/ mfd/ nfc/ | |
49 | obj-$(CONFIG_NUBUS) += nubus/ | |
50 | obj-y += macintosh/ | |
51 | obj-$(CONFIG_IDE) += ide/ | |
52 | obj-$(CONFIG_SCSI) += scsi/ | |
53 | obj-$(CONFIG_ATA) += ata/ | |
54 | obj-$(CONFIG_TARGET_CORE) += target/ | |
55 | obj-$(CONFIG_MTD) += mtd/ | |
56 | obj-$(CONFIG_SPI) += spi/ | |
57 | obj-y += hsi/ | |
58 | obj-y += net/ | |
59 | obj-$(CONFIG_ATM) += atm/ | |
60 | obj-$(CONFIG_FUSION) += message/ | |
61 | obj-y += firewire/ | |
62 | obj-$(CONFIG_UIO) += uio/ | |
63 | obj-$(CONFIG_VFIO) += vfio/ | |
64 | obj-y += cdrom/ | |
65 | obj-y += auxdisplay/ | |
66 | obj-$(CONFIG_PCCARD) += pcmcia/ | |
67 | obj-$(CONFIG_DIO) += dio/ | |
68 | obj-$(CONFIG_SBUS) += sbus/ | |
69 | obj-$(CONFIG_ZORRO) += zorro/ | |
70 | obj-$(CONFIG_MAC) += macintosh/ | |
71 | obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/ | |
72 | obj-$(CONFIG_PARIDE) += block/paride/ | |
73 | obj-$(CONFIG_TC) += tc/ | |
74 | obj-$(CONFIG_UWB) += uwb/ | |
75 | obj-$(CONFIG_USB_OTG_UTILS) += usb/ | |
76 | obj-$(CONFIG_USB) += usb/ | |
77 | obj-$(CONFIG_PCI) += usb/ | |
78 | obj-$(CONFIG_USB_GADGET) += usb/ | |
79 | obj-$(CONFIG_SERIO) += input/serio/ | |
80 | obj-$(CONFIG_GAMEPORT) += input/gameport/ | |
81 | obj-$(CONFIG_INPUT) += input/ | |
82 | obj-$(CONFIG_I2O) += message/ | |
83 | obj-$(CONFIG_RTC_LIB) += rtc/ | |
84 | obj-y += i2c/ media/ | |
85 | obj-$(CONFIG_PPS) += pps/ | |
86 | obj-$(CONFIG_PTP_1588_CLOCK) += ptp/ | |
87 | obj-$(CONFIG_W1) += w1/ | |
88 | obj-$(CONFIG_POWER_SUPPLY) += power/ | |
89 | obj-$(CONFIG_HWMON) += hwmon/ | |
90 | obj-$(CONFIG_THERMAL) += thermal/ | |
91 | obj-$(CONFIG_WATCHDOG) += watchdog/ | |
92 | obj-$(CONFIG_MD) += md/ | |
93 | obj-$(CONFIG_BT) += bluetooth/ | |
94 | obj-$(CONFIG_ACCESSIBILITY) += accessibility/ | |
95 | obj-$(CONFIG_ISDN) += isdn/ | |
96 | obj-$(CONFIG_EDAC) += edac/ | |
97 | obj-$(CONFIG_EISA) += eisa/ | |
98 | obj-y += lguest/ | |
99 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ | |
100 | obj-$(CONFIG_CPU_IDLE) += cpuidle/ | |
101 | obj-y += mmc/ | |
102 | obj-$(CONFIG_MEMSTICK) += memstick/ | |
103 | obj-y += leds/ | |
104 | obj-$(CONFIG_INFINIBAND) += infiniband/ | |
105 | obj-$(CONFIG_SGI_SN) += sn/ | |
106 | obj-y += firmware/ | |
107 | obj-$(CONFIG_CRYPTO) += crypto/ | |
108 | obj-$(CONFIG_SUPERH) += sh/ | |
109 | obj-$(CONFIG_ARCH_SHMOBILE) += sh/ | |
110 | ifndef CONFIG_ARCH_USES_GETTIMEOFFSET | |
111 | obj-y += clocksource/ | |
112 | endif | |
113 | obj-$(CONFIG_DCA) += dca/ | |
114 | obj-$(CONFIG_HID) += hid/ | |
115 | obj-$(CONFIG_PPC_PS3) += ps3/ | |
116 | obj-$(CONFIG_OF) += of/ | |
117 | obj-$(CONFIG_SSB) += ssb/ | |
118 | obj-$(CONFIG_BCMA) += bcma/ | |
119 | obj-$(CONFIG_VHOST_NET) += vhost/ | |
120 | obj-$(CONFIG_VLYNQ) += vlynq/ | |
121 | obj-$(CONFIG_STAGING) += staging/ | |
122 | obj-y += platform/ | |
123 | obj-y += ieee802154/ | |
124 | #common clk code | |
125 | obj-y += clk/ | |
126 | ||
127 | obj-$(CONFIG_HWSPINLOCK) += hwspinlock/ | |
128 | obj-$(CONFIG_NFC) += nfc/ | |
129 | obj-$(CONFIG_IOMMU_SUPPORT) += iommu/ | |
130 | obj-$(CONFIG_REMOTEPROC) += remoteproc/ | |
131 | obj-$(CONFIG_RPMSG) += rpmsg/ | |
132 | ||
133 | # Virtualization drivers | |
134 | obj-$(CONFIG_VIRT_DRIVERS) += virt/ | |
135 | obj-$(CONFIG_HYPERV) += hv/ | |
136 | ||
137 | obj-$(CONFIG_PM_DEVFREQ) += devfreq/ | |
138 | obj-$(CONFIG_EXTCON) += extcon/ | |
139 | obj-$(CONFIG_MEMORY) += memory/ | |
140 | obj-$(CONFIG_IIO) += iio/ | |
141 | obj-$(CONFIG_VME_BUS) += vme/ |