diff options
author | Paul Cercueil <paul@crapouillou.net> | 2020-09-06 22:29:25 +0300 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-09-18 17:28:31 +0300 |
commit | c434b9f80b0923e6460031b0fd964f8b0bf3c6a6 (patch) | |
tree | eaff627f3bd131c5988494a0e2862ead1749a239 /arch/mips/generic | |
parent | 5f5ed0ebcf84c7479c93a28c5c0e1b0b6926883b (diff) | |
download | linux-c434b9f80b0923e6460031b0fd964f8b0bf3c6a6.tar.xz |
MIPS: Kconfig: add MIPS_GENERIC_KERNEL symbol
The MIPS_GENERIC symbol now won't select any other configuration option.
The MIPS_GENERIC_KERNEL will select all the options that the previous
MIPS_GENERIC option did select, and will select MIPS_GENERIC as well.
The whole point of this, is that it now becomes possible to compile a
kernel for a SoC supported by the arch/mips/generic/ code, without
making that kernel generic itself.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/generic')
-rw-r--r-- | arch/mips/generic/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/generic/Kconfig b/arch/mips/generic/Kconfig index fd6019802657..5216c850b7e2 100644 --- a/arch/mips/generic/Kconfig +++ b/arch/mips/generic/Kconfig @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -if MIPS_GENERIC +if MIPS_GENERIC_KERNEL config LEGACY_BOARDS bool |