diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-29 00:59:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 08:06:01 -0700 |
commit | 3202e1811fd312f3f32ddc8f526aa2691b64ec55 (patch) | |
tree | 57542acf2fad8f36de17499f1926809d331325a6 /fs/Kconfig.binfmt | |
parent | f1e3af72c10ba74fb15864c354515ec1bd8bf2a5 (diff) | |
download | kernel_goldelico_gta04-3202e1811fd312f3f32ddc8f526aa2691b64ec55.zip kernel_goldelico_gta04-3202e1811fd312f3f32ddc8f526aa2691b64ec55.tar.gz kernel_goldelico_gta04-3202e1811fd312f3f32ddc8f526aa2691b64ec55.tar.bz2 |
make BINFMT_FLAT a bool
I have not yet seen anyone saying he has a reasonable use case for using
BINFMT_FLAT modular on his embedded device.
Considering that fs/binfmt_flat.c even lacks a MODULE_LICENSE() I really doubt
there is any, and this patch therefore makes BINFMT_FLAT a bool.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Bryan Wu <cooloney.lkml@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/Kconfig.binfmt')
-rw-r--r-- | fs/Kconfig.binfmt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/Kconfig.binfmt b/fs/Kconfig.binfmt index 853845a..55e8ee1 100644 --- a/fs/Kconfig.binfmt +++ b/fs/Kconfig.binfmt @@ -41,7 +41,7 @@ config BINFMT_ELF_FDPIC It is also possible to run FDPIC ELF binaries on MMU linux also. config BINFMT_FLAT - tristate "Kernel support for flat binaries" + bool "Kernel support for flat binaries" depends on !MMU help Support uClinux FLAT format binaries. |