diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-05-30 22:52:42 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-30 23:29:02 +0200 |
commit | 36017b3d3acdbcfeb8c6e89f5bd71c379f5f5ecf (patch) | |
tree | f1b07ab1fa793f884497e109c599314b369aac04 /package/elf2flt | |
parent | 019188d2ee8705717e8e5840f21e47ef043433d8 (diff) |
package/elf2flt: hide when an MMU is used
elf2flt is specifically for cases where an MMU is not available.
There is no point in building elf2flt when using an MMU.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/elf2flt')
-rw-r--r-- | package/elf2flt/Config.in.host | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/elf2flt/Config.in.host b/package/elf2flt/Config.in.host index dad48d805..605ce20fd 100644 --- a/package/elf2flt/Config.in.host +++ b/package/elf2flt/Config.in.host @@ -1,6 +1,7 @@ config BR2_PACKAGE_HOST_ELF2FLT bool "Enable elf2flt support?" depends on BR2_arm || BR2_bfin || BR2_sh || BR2_sparc + depends on !BR2_USE_MMU help uCLinux uses a Binary Flat format commonly known as BFLT. It is a relatively simple and lightweight executable format |