mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-22 10:34:55 +08: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)
|
|
|