提交 3202e181 编写于 作者: A Adrian Bunk 提交者: Linus Torvalds

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: NAdrian Bunk <bunk@kernel.org>
Acked-by: NBryan Wu <cooloney.lkml@gmail.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 f1e3af72
...@@ -41,7 +41,7 @@ config BINFMT_ELF_FDPIC ...@@ -41,7 +41,7 @@ config BINFMT_ELF_FDPIC
It is also possible to run FDPIC ELF binaries on MMU linux also. It is also possible to run FDPIC ELF binaries on MMU linux also.
config BINFMT_FLAT config BINFMT_FLAT
tristate "Kernel support for flat binaries" bool "Kernel support for flat binaries"
depends on !MMU depends on !MMU
help help
Support uClinux FLAT format binaries. Support uClinux FLAT format binaries.
......
...@@ -932,14 +932,8 @@ static int __init init_flat_binfmt(void) ...@@ -932,14 +932,8 @@ static int __init init_flat_binfmt(void)
return register_binfmt(&flat_format); return register_binfmt(&flat_format);
} }
static void __exit exit_flat_binfmt(void)
{
unregister_binfmt(&flat_format);
}
/****************************************************************************/ /****************************************************************************/
core_initcall(init_flat_binfmt); core_initcall(init_flat_binfmt);
module_exit(exit_flat_binfmt);
/****************************************************************************/ /****************************************************************************/
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册