mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
f0f4a75307
Add support for Ingenic SoCs in arch/mips/generic/. The Kconfig changes are here to ensure that it is possible to compile either a generic kernel that supports Ingenic SoCs, or a Ingenic-only kernel, both using the same code base, to avoid duplicated code. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16 lines
432 B
Makefile
16 lines
432 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (C) 2016 Imagination Technologies
|
|
# Author: Paul Burton <paul.burton@mips.com>
|
|
#
|
|
|
|
obj-y += init.o
|
|
obj-y += irq.o
|
|
obj-y += proc.o
|
|
|
|
obj-$(CONFIG_YAMON_DT_SHIM) += yamon-dt.o
|
|
obj-$(CONFIG_LEGACY_BOARD_SEAD3) += board-sead3.o
|
|
obj-$(CONFIG_LEGACY_BOARD_OCELOT) += board-ocelot.o
|
|
obj-$(CONFIG_MACH_INGENIC) += board-ingenic.o
|
|
obj-$(CONFIG_VIRT_BOARD_RANCHU) += board-ranchu.o
|