diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-25 15:28:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-25 15:28:12 +0100 |
commit | 33756497d46c61946047a43a09c1944f9ba0b026 (patch) | |
tree | 2561f45ed2db4765b6e532c2448c562d73da4a02 | |
parent | 933a6245368ee80c61eff2160ba7c0aa3e6e3dcd (diff) |
default to ELF for MMU architectures, unbreak bootup with missing ELF kernel support
-rw-r--r-- | target/config/Config.in.binfmt | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/target/config/Config.in.binfmt b/target/config/Config.in.binfmt index 651c3b205..1ed595afc 100644 --- a/target/config/Config.in.binfmt +++ b/target/config/Config.in.binfmt @@ -3,19 +3,10 @@ choice prompt "Binary Format" -depends on ADK_TARGET_ARCH_ARM \ - || ADK_TARGET_ARCH_BFIN \ - || ADK_TARGET_ARCH_C6X \ - || ADK_TARGET_ARCH_FRV \ - || ADK_TARGET_ARCH_H8300 \ - || ADK_TARGET_ARCH_LM32 \ - || ADK_TARGET_ARCH_M68K \ - || ADK_TARGET_ARCH_SH \ - || ADK_TARGET_ARCH_XTENSA config ADK_TARGET_BINFMT_ELF bool "ELF" - depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_SH || ADK_TARGET_ARCH_XTENSA) && ADK_TARGET_WITH_MMU + depends on ADK_TARGET_WITH_MMU config ADK_TARGET_BINFMT_FLAT bool "FLAT" |