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/char/watchdog/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/char/watchdog/Makefile')
-rw-r--r-- | drivers/char/watchdog/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/drivers/char/watchdog/Makefile b/drivers/char/watchdog/Makefile new file mode 100644 index 000000000000..1cd27efa35c1 --- /dev/null +++ b/drivers/char/watchdog/Makefile | |||
@@ -0,0 +1,42 @@ | |||
1 | # | ||
2 | # Makefile for the WatchDog device drivers. | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_PCWATCHDOG) += pcwd.o | ||
6 | obj-$(CONFIG_ACQUIRE_WDT) += acquirewdt.o | ||
7 | obj-$(CONFIG_ADVANTECH_WDT) += advantechwdt.o | ||
8 | obj-$(CONFIG_IB700_WDT) += ib700wdt.o | ||
9 | obj-$(CONFIG_MIXCOMWD) += mixcomwd.o | ||
10 | obj-$(CONFIG_SCx200_WDT) += scx200_wdt.o | ||
11 | obj-$(CONFIG_60XX_WDT) += sbc60xxwdt.o | ||
12 | obj-$(CONFIG_WDT) += wdt.o | ||
13 | obj-$(CONFIG_WDTPCI) += wdt_pci.o | ||
14 | obj-$(CONFIG_21285_WATCHDOG) += wdt285.o | ||
15 | obj-$(CONFIG_977_WATCHDOG) += wdt977.o | ||
16 | obj-$(CONFIG_I8XX_TCO) += i8xx_tco.o | ||
17 | obj-$(CONFIG_MACHZ_WDT) += machzwd.o | ||
18 | obj-$(CONFIG_SH_WDT) += shwdt.o | ||
19 | obj-$(CONFIG_S3C2410_WATCHDOG) += s3c2410_wdt.o | ||
20 | obj-$(CONFIG_SA1100_WATCHDOG) += sa1100_wdt.o | ||
21 | obj-$(CONFIG_EUROTECH_WDT) += eurotechwdt.o | ||
22 | obj-$(CONFIG_W83877F_WDT) += w83877f_wdt.o | ||
23 | obj-$(CONFIG_W83627HF_WDT) += w83627hf_wdt.o | ||
24 | obj-$(CONFIG_SC520_WDT) += sc520_wdt.o | ||
25 | obj-$(CONFIG_ALIM7101_WDT) += alim7101_wdt.o | ||
26 | obj-$(CONFIG_ALIM1535_WDT) += alim1535_wdt.o | ||
27 | obj-$(CONFIG_SC1200_WDT) += sc1200wdt.o | ||
28 | obj-$(CONFIG_WAFER_WDT) += wafer5823wdt.o | ||
29 | obj-$(CONFIG_CPU5_WDT) += cpu5wdt.o | ||
30 | obj-$(CONFIG_INDYDOG) += indydog.o | ||
31 | obj-$(CONFIG_PCIPCWATCHDOG) += pcwd_pci.o | ||
32 | obj-$(CONFIG_USBPCWATCHDOG) += pcwd_usb.o | ||
33 | obj-$(CONFIG_IXP4XX_WATCHDOG) += ixp4xx_wdt.o | ||
34 | obj-$(CONFIG_IXP2000_WATCHDOG) += ixp2000_wdt.o | ||
35 | obj-$(CONFIG_8xx_WDT) += mpc8xx_wdt.o | ||
36 | |||
37 | # Only one watchdog can succeed. We probe the hardware watchdog | ||
38 | # drivers first, then the softdog driver. This means if your hardware | ||
39 | # watchdog dies or is 'borrowed' for some reason the software watchdog | ||
40 | # still gives you some cover. | ||
41 | |||
42 | obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o | ||