diff options
Diffstat (limited to 'qemu/roms/u-boot/drivers/watchdog/Makefile')
-rw-r--r-- | qemu/roms/u-boot/drivers/watchdog/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/drivers/watchdog/Makefile b/qemu/roms/u-boot/drivers/watchdog/Makefile new file mode 100644 index 000000000..06ced10c3 --- /dev/null +++ b/qemu/roms/u-boot/drivers/watchdog/Makefile @@ -0,0 +1,17 @@ +# +# (C) Copyright 2008 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-$(CONFIG_AT91SAM9_WATCHDOG) += at91sam9_wdt.o +obj-$(CONFIG_FTWDT010_WATCHDOG) += ftwdt010_wdt.o +ifneq (,$(filter $(SOC), mx31 mx35 mx5 mx6 vf610)) +obj-y += imx_watchdog.o +endif +obj-$(CONFIG_TNETV107X_WATCHDOG) += tnetv107x_wdt.o +obj-$(CONFIG_S5P) += s5p_wdt.o +obj-$(CONFIG_XILINX_TB_WATCHDOG) += xilinx_tb_wdt.o +obj-$(CONFIG_BFIN_WATCHDOG) += bfin_wdt.o +obj-$(CONFIG_OMAP_WATCHDOG) += omap_wdt.o |