diff options
author | Paul Cercueil <paul@crapouillou.net> | 2020-09-06 22:29:31 +0300 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-09-18 17:33:59 +0300 |
commit | f0f4a753079c636d5d43a102edbde0dad1e7de51 (patch) | |
tree | 53249dace98d456e5b5139ee8e578967ecf39890 /arch/mips/generic/Makefile | |
parent | 02bd530f888c6d6ba4995c3afcd10f87c136f173 (diff) | |
download | linux-f0f4a753079c636d5d43a102edbde0dad1e7de51.tar.xz |
MIPS: generic: Add support for Ingenic SoCs
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>
Diffstat (limited to 'arch/mips/generic/Makefile')
-rw-r--r-- | arch/mips/generic/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/generic/Makefile b/arch/mips/generic/Makefile index 2384a6b09e4c..e37a59bae0a6 100644 --- a/arch/mips/generic/Makefile +++ b/arch/mips/generic/Makefile @@ -11,4 +11,5 @@ 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 |