mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
9a9e1be12c
The Cerf, H3100, Badge4, Hackkit, LART, NanoEngine, PLEB, Shannon and Simpad machines were all marked as unused as there are no known users left. Remove all of these, along with references to them in defconfig files and drivers. Four machines remain now: Assabet, Collie (Zaurus SL5500), iPAQ H3600 and Jornada 720, each of which had one person still using them, with Collie also being supported in Qemu. Cc: Peter Chubb <peter.chubb@unsw.edu.au> Cc: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Lee Jones <lee@kernel.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
21 lines
537 B
Makefile
21 lines
537 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := clock.o generic.o #nmi-oopser.o
|
|
|
|
# Specific board support
|
|
obj-$(CONFIG_SA1100_ASSABET) += assabet.o
|
|
obj-$(CONFIG_ASSABET_NEPONSET) += neponset.o
|
|
obj-$(CONFIG_SA1100_COLLIE) += collie.o
|
|
obj-$(CONFIG_SA1100_H3600) += h3600.o h3xxx.o
|
|
obj-$(CONFIG_SA1100_JORNADA720) += jornada720.o
|
|
obj-$(CONFIG_SA1100_JORNADA720_SSP) += jornada720_ssp.o
|
|
|
|
# Miscellaneous functions
|
|
obj-$(CONFIG_PM) += pm.o sleep.o
|
|
obj-$(CONFIG_SA1100_SSP) += ssp.o
|
|
|