Kconfig.binfmt (908cf4b925e419bc74f3297b2f0e51d6f8a81da2) Kconfig.binfmt (3bc24a1a5441ef621daf737ec93b0a10e8999d59)
1config BINFMT_ELF
2 bool "Kernel support for ELF binaries"
3 depends on MMU && (BROKEN || !FRV)
4 default y
5 ---help---
6 ELF (Executable and Linkable Format) is a format for libraries and
7 executables used across different architectures and operating
8 systems. Saying Y here will enable your kernel to run ELF binaries

--- 16 unchanged lines hidden (view full) ---

25
26config COMPAT_BINFMT_ELF
27 bool
28 depends on COMPAT && MMU
29
30config BINFMT_ELF_FDPIC
31 bool "Kernel support for FDPIC ELF binaries"
32 default y
1config BINFMT_ELF
2 bool "Kernel support for ELF binaries"
3 depends on MMU && (BROKEN || !FRV)
4 default y
5 ---help---
6 ELF (Executable and Linkable Format) is a format for libraries and
7 executables used across different architectures and operating
8 systems. Saying Y here will enable your kernel to run ELF binaries

--- 16 unchanged lines hidden (view full) ---

25
26config COMPAT_BINFMT_ELF
27 bool
28 depends on COMPAT && MMU
29
30config BINFMT_ELF_FDPIC
31 bool "Kernel support for FDPIC ELF binaries"
32 default y
33 depends on (FRV || BLACKFIN)
33 depends on (FRV || BLACKFIN || (SUPERH32 && !MMU))
34 help
35 ELF FDPIC binaries are based on ELF, but allow the individual load
36 segments of a binary to be located in memory independently of each
37 other. This makes this format ideal for use in environments where no
38 MMU is available as it still permits text segments to be shared,
39 even if data segments are not.
40
41 It is also possible to run FDPIC ELF binaries on MMU linux also.

--- 98 unchanged lines hidden ---
34 help
35 ELF FDPIC binaries are based on ELF, but allow the individual load
36 segments of a binary to be located in memory independently of each
37 other. This makes this format ideal for use in environments where no
38 MMU is available as it still permits text segments to be shared,
39 even if data segments are not.
40
41 It is also possible to run FDPIC ELF binaries on MMU linux also.

--- 98 unchanged lines hidden ---