Kconfig.binfmt (10a558374f3751cf4eb55143008975641dfc2cf4) Kconfig.binfmt (a687a5337063af99ebd0eebaa6f4b4cf2e07c21b)
1config BINFMT_ELF
2 bool "Kernel support for ELF binaries"
1config BINFMT_ELF
2 bool "Kernel support for ELF binaries"
3 depends on MMU && (BROKEN || !FRV)
3 depends on MMU
4 select ELFCORE
5 default y
6 ---help---
7 ELF (Executable and Linkable Format) is a format for libraries and
8 executables used across different architectures and operating
9 systems. Saying Y here will enable your kernel to run ELF binaries
10 and enlarge it by about 13 KB. ELF support under Linux has now all
11 but replaced the traditional Linux a.out formats (QMAGIC and ZMAGIC)

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

30 select ELFCORE
31
32config ARCH_BINFMT_ELF_STATE
33 bool
34
35config BINFMT_ELF_FDPIC
36 bool "Kernel support for FDPIC ELF binaries"
37 default y if !BINFMT_ELF
4 select ELFCORE
5 default y
6 ---help---
7 ELF (Executable and Linkable Format) is a format for libraries and
8 executables used across different architectures and operating
9 systems. Saying Y here will enable your kernel to run ELF binaries
10 and enlarge it by about 13 KB. ELF support under Linux has now all
11 but replaced the traditional Linux a.out formats (QMAGIC and ZMAGIC)

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

30 select ELFCORE
31
32config ARCH_BINFMT_ELF_STATE
33 bool
34
35config BINFMT_ELF_FDPIC
36 bool "Kernel support for FDPIC ELF binaries"
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
40 help
41 ELF FDPIC binaries are based on ELF, but allow the individual load
42 segments of a binary to be located in memory independently of each
43 other. This makes this format ideal for use in environments where no
44 MMU is available as it still permits text segments to be shared,
45 even if data segments are not.
46

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

85 module from an initramfs, the portion of the initramfs before loading
86 this module must consist of compiled binaries only.
87
88 Most systems will not boot if you say M or N here. If unsure, say Y.
89
90config BINFMT_FLAT
91 bool "Kernel support for flat binaries"
92 depends on !MMU || ARM || M68K
39 select ELFCORE
40 help
41 ELF FDPIC binaries are based on ELF, but allow the individual load
42 segments of a binary to be located in memory independently of each
43 other. This makes this format ideal for use in environments where no
44 MMU is available as it still permits text segments to be shared,
45 even if data segments are not.
46

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

85 module from an initramfs, the portion of the initramfs before loading
86 this module must consist of compiled binaries only.
87
88 Most systems will not boot if you say M or N here. If unsure, say Y.
89
90config BINFMT_FLAT
91 bool "Kernel support for flat binaries"
92 depends on !MMU || ARM || M68K
93 depends on !FRV || BROKEN
94 help
95 Support uClinux FLAT format binaries.
96
97config BINFMT_ZFLAT
98 bool "Enable ZFLAT support"
99 depends on BINFMT_FLAT
100 select ZLIB_INFLATE
101 help

--- 89 unchanged lines hidden ---
93 help
94 Support uClinux FLAT format binaries.
95
96config BINFMT_ZFLAT
97 bool "Enable ZFLAT support"
98 depends on BINFMT_FLAT
99 select ZLIB_INFLATE
100 help

--- 89 unchanged lines hidden ---