summaryrefslogtreecommitdiffstats
path: root/fs/Kconfig.binfmt
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-03-07 17:30:54 -0500
committerArnd Bergmann <arnd@arndb.de>2018-03-26 09:55:57 -0400
commita687a5337063af99ebd0eebaa6f4b4cf2e07c21b (patch)
tree447a8424d9c8982bb5038d31f8ddea11839bc449 /fs/Kconfig.binfmt
parent79375ea3ec527f746d5beae8c8f6e8a58740d4a8 (diff)
treewide: simplify Kconfig dependencies for removed archs
A lot of Kconfig symbols have architecture specific dependencies. In those cases that depend on architectures we have already removed, they can be omitted. Acked-by: Kalle Valo <kvalo@codeaurora.org> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'fs/Kconfig.binfmt')
-rw-r--r--fs/Kconfig.binfmt5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/Kconfig.binfmt b/fs/Kconfig.binfmt
index 58c2bbd385ad..57a27c42b5ac 100644
--- a/fs/Kconfig.binfmt
+++ b/fs/Kconfig.binfmt
@@ -1,6 +1,6 @@
1config BINFMT_ELF 1config BINFMT_ELF
2 bool "Kernel support for ELF binaries" 2 bool "Kernel support for ELF binaries"
3 depends on MMU && (BROKEN || !FRV) 3 depends on MMU
4 select ELFCORE 4 select ELFCORE
5 default y 5 default y
6 ---help--- 6 ---help---
@@ -35,7 +35,7 @@ config ARCH_BINFMT_ELF_STATE
35config BINFMT_ELF_FDPIC 35config BINFMT_ELF_FDPIC
36 bool "Kernel support for FDPIC ELF binaries" 36 bool "Kernel support for FDPIC ELF binaries"
37 default y if !BINFMT_ELF 37 default y if !BINFMT_ELF
38 depends on (ARM || FRV || BLACKFIN || (SUPERH32 && !MMU) || C6X) 38 depends on (ARM || (SUPERH32 && !MMU) || C6X)
39 select ELFCORE 39 select ELFCORE
40 help 40 help
41 ELF FDPIC binaries are based on ELF, but allow the individual load 41 ELF FDPIC binaries are based on ELF, but allow the individual load
@@ -90,7 +90,6 @@ config BINFMT_SCRIPT
90config BINFMT_FLAT 90config BINFMT_FLAT
91 bool "Kernel support for flat binaries" 91 bool "Kernel support for flat binaries"
92 depends on !MMU || ARM || M68K 92 depends on !MMU || ARM || M68K
93 depends on !FRV || BROKEN
94 help 93 help
95 Support uClinux FLAT format binaries. 94 Support uClinux FLAT format binaries.
96 95