diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile new file mode 100644 index 000000000000..15681de688f4 --- /dev/null +++ b/drivers/Makefile | |||
@@ -0,0 +1,66 @@ | |||
1 | # | ||
2 | # Makefile for the Linux kernel device drivers. | ||
3 | # | ||
4 | # 15 Sep 2000, Christoph Hellwig <hch@infradead.org> | ||
5 | # Rewritten to use lists instead of if-statements. | ||
6 | # | ||
7 | |||
8 | obj-$(CONFIG_PCI) += pci/ | ||
9 | obj-$(CONFIG_PARISC) += parisc/ | ||
10 | obj-y += video/ | ||
11 | obj-$(CONFIG_ACPI_BOOT) += acpi/ | ||
12 | # PnP must come after ACPI since it will eventually need to check if acpi | ||
13 | # was used and do nothing if so | ||
14 | obj-$(CONFIG_PNP) += pnp/ | ||
15 | |||
16 | # char/ comes before serial/ etc so that the VT console is the boot-time | ||
17 | # default. | ||
18 | obj-y += char/ | ||
19 | |||
20 | # i810fb and intelfb depend on char/agp/ | ||
21 | obj-$(CONFIG_FB_I810) += video/i810/ | ||
22 | obj-$(CONFIG_FB_INTEL) += video/intelfb/ | ||
23 | |||
24 | # we also need input/serio early so serio bus is initialized by the time | ||
25 | # serial drivers start registering their serio ports | ||
26 | obj-$(CONFIG_SERIO) += input/serio/ | ||
27 | obj-y += serial/ | ||
28 | obj-$(CONFIG_PARPORT) += parport/ | ||
29 | obj-y += base/ block/ misc/ net/ media/ | ||
30 | obj-$(CONFIG_NUBUS) += nubus/ | ||
31 | obj-$(CONFIG_ATM) += atm/ | ||
32 | obj-$(CONFIG_PPC_PMAC) += macintosh/ | ||
33 | obj-$(CONFIG_IDE) += ide/ | ||
34 | obj-$(CONFIG_FC4) += fc4/ | ||
35 | obj-$(CONFIG_SCSI) += scsi/ | ||
36 | obj-$(CONFIG_FUSION) += message/ | ||
37 | obj-$(CONFIG_IEEE1394) += ieee1394/ | ||
38 | obj-y += cdrom/ | ||
39 | obj-$(CONFIG_MTD) += mtd/ | ||
40 | obj-$(CONFIG_PCCARD) += pcmcia/ | ||
41 | obj-$(CONFIG_DIO) += dio/ | ||
42 | obj-$(CONFIG_SBUS) += sbus/ | ||
43 | obj-$(CONFIG_ZORRO) += zorro/ | ||
44 | obj-$(CONFIG_MAC) += macintosh/ | ||
45 | obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/ | ||
46 | obj-$(CONFIG_PARIDE) += block/paride/ | ||
47 | obj-$(CONFIG_TC) += tc/ | ||
48 | obj-$(CONFIG_USB) += usb/ | ||
49 | obj-$(CONFIG_USB_GADGET) += usb/gadget/ | ||
50 | obj-$(CONFIG_GAMEPORT) += input/gameport/ | ||
51 | obj-$(CONFIG_INPUT) += input/ | ||
52 | obj-$(CONFIG_I2O) += message/ | ||
53 | obj-$(CONFIG_I2C) += i2c/ | ||
54 | obj-$(CONFIG_W1) += w1/ | ||
55 | obj-$(CONFIG_PHONE) += telephony/ | ||
56 | obj-$(CONFIG_MD) += md/ | ||
57 | obj-$(CONFIG_BT) += bluetooth/ | ||
58 | obj-$(CONFIG_ISDN) += isdn/ | ||
59 | obj-$(CONFIG_MCA) += mca/ | ||
60 | obj-$(CONFIG_EISA) += eisa/ | ||
61 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ | ||
62 | obj-$(CONFIG_MMC) += mmc/ | ||
63 | obj-$(CONFIG_INFINIBAND) += infiniband/ | ||
64 | obj-$(CONFIG_BLK_DEV_SGIIOC4) += sn/ | ||
65 | obj-y += firmware/ | ||
66 | obj-$(CONFIG_CRYPTO) += crypto/ | ||