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/pcmcia/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/pcmcia/Makefile')
-rw-r--r-- | drivers/pcmcia/Makefile | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/drivers/pcmcia/Makefile b/drivers/pcmcia/Makefile new file mode 100644 index 000000000000..50c29361bc5f --- /dev/null +++ b/drivers/pcmcia/Makefile | |||
@@ -0,0 +1,65 @@ | |||
1 | # | ||
2 | # Makefile for the kernel pcmcia subsystem (c/o David Hinds) | ||
3 | # | ||
4 | |||
5 | ifeq ($(CONFIG_PCMCIA_DEBUG),y) | ||
6 | EXTRA_CFLAGS += -DDEBUG | ||
7 | endif | ||
8 | |||
9 | pcmcia_core-y += cs.o cistpl.o rsrc_mgr.o socket_sysfs.o | ||
10 | pcmcia_core-$(CONFIG_CARDBUS) += cardbus.o | ||
11 | obj-$(CONFIG_PCCARD) += pcmcia_core.o | ||
12 | |||
13 | pcmcia-y += ds.o pcmcia_compat.o | ||
14 | obj-$(CONFIG_PCMCIA) += pcmcia.o | ||
15 | |||
16 | obj-$(CONFIG_PCCARD_NONSTATIC) += rsrc_nonstatic.o | ||
17 | |||
18 | |||
19 | # socket drivers | ||
20 | |||
21 | obj-$(CONFIG_YENTA) += yenta_socket.o | ||
22 | |||
23 | obj-$(CONFIG_PD6729) += pd6729.o | ||
24 | obj-$(CONFIG_I82365) += i82365.o | ||
25 | obj-$(CONFIG_I82092) += i82092.o | ||
26 | obj-$(CONFIG_TCIC) += tcic.o | ||
27 | obj-$(CONFIG_HD64465_PCMCIA) += hd64465_ss.o | ||
28 | obj-$(CONFIG_PCMCIA_SA1100) += sa11xx_core.o sa1100_cs.o | ||
29 | obj-$(CONFIG_PCMCIA_SA1111) += sa11xx_core.o sa1111_cs.o | ||
30 | obj-$(CONFIG_PCMCIA_PXA2XX) += pxa2xx_core.o pxa2xx_cs.o | ||
31 | obj-$(CONFIG_M32R_PCC) += m32r_pcc.o | ||
32 | obj-$(CONFIG_M32R_CFC) += m32r_cfc.o | ||
33 | obj-$(CONFIG_PCMCIA_AU1X00) += au1x00_ss.o | ||
34 | obj-$(CONFIG_PCMCIA_VRC4171) += vrc4171_card.o | ||
35 | obj-$(CONFIG_PCMCIA_VRC4173) += vrc4173_cardu.o | ||
36 | |||
37 | sa11xx_core-y += soc_common.o sa11xx_base.o | ||
38 | pxa2xx_core-y += soc_common.o pxa2xx_base.o | ||
39 | |||
40 | au1x00_ss-y += au1000_generic.o | ||
41 | au1x00_ss-$(CONFIG_MIPS_PB1000) += au1000_pb1x00.o | ||
42 | au1x00_ss-$(CONFIG_MIPS_PB1100) += au1000_pb1x00.o | ||
43 | au1x00_ss-$(CONFIG_MIPS_PB1500) += au1000_pb1x00.o | ||
44 | au1x00_ss-$(CONFIG_MIPS_DB1000) += au1000_db1x00.o | ||
45 | au1x00_ss-$(CONFIG_MIPS_DB1100) += au1000_db1x00.o | ||
46 | au1x00_ss-$(CONFIG_MIPS_DB1500) += au1000_db1x00.o | ||
47 | au1x00_ss-$(CONFIG_MIPS_DB1550) += au1000_db1x00.o | ||
48 | au1x00_ss-$(CONFIG_MIPS_XXS1500) += au1000_xxs1500.o | ||
49 | |||
50 | sa1111_cs-y += sa1111_generic.o | ||
51 | sa1111_cs-$(CONFIG_ASSABET_NEPONSET) += sa1100_neponset.o | ||
52 | sa1111_cs-$(CONFIG_SA1100_BADGE4) += sa1100_badge4.o | ||
53 | sa1111_cs-$(CONFIG_SA1100_JORNADA720) += sa1100_jornada720.o | ||
54 | |||
55 | sa1100_cs-y += sa1100_generic.o | ||
56 | sa1100_cs-$(CONFIG_SA1100_ASSABET) += sa1100_assabet.o | ||
57 | sa1100_cs-$(CONFIG_SA1100_CERF) += sa1100_cerf.o | ||
58 | sa1100_cs-$(CONFIG_SA1100_H3600) += sa1100_h3600.o | ||
59 | sa1100_cs-$(CONFIG_SA1100_SHANNON) += sa1100_shannon.o | ||
60 | sa1100_cs-$(CONFIG_SA1100_SIMPAD) += sa1100_simpad.o | ||
61 | |||
62 | pxa2xx_cs-$(CONFIG_ARCH_LUBBOCK) += pxa2xx_lubbock.o sa1111_generic.o | ||
63 | pxa2xx_cs-$(CONFIG_MACH_MAINSTONE) += pxa2xx_mainstone.o | ||
64 | pxa2xx_cs-$(CONFIG_PXA_SHARPSL) += pxa2xx_sharpsl.o | ||
65 | |||