mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-04 04:02:26 +00:00
50f6f34e60
Nobody seems to have a CATS machine any more, so remove it now, leaving only NetWinder and EBSA285. Cc: Russell King <linux@armlinux.org.uk> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
19 lines
412 B
Makefile
19 lines
412 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := common.o isa-irq.o isa.o isa-rtc.o dma-isa.o
|
|
|
|
pci-y += dc21285.o
|
|
pci-$(CONFIG_ARCH_EBSA285) += ebsa285-pci.o
|
|
pci-$(CONFIG_ARCH_NETWINDER) += netwinder-pci.o
|
|
|
|
obj-$(CONFIG_ARCH_EBSA285) += ebsa285.o dc21285-timer.o
|
|
obj-$(CONFIG_ARCH_NETWINDER) += netwinder-hw.o isa-timer.o
|
|
|
|
obj-$(CONFIG_PCI) +=$(pci-y)
|
|
|