Config.in.binfmt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "Binary format"
  5. depends on ADK_TARGET_OS_LINUX && !ADK_TARGET_CHOOSE_ARCH
  6. config ADK_TARGET_BINFMT_ELF
  7. bool "ELF"
  8. select ADK_TARGET_USE_STATIC_LIBS_ONLY if !ADK_TARGET_WITH_MMU
  9. depends on ADK_TARGET_WITH_MMU || ADK_TARGET_ARCH_ARM || \
  10. ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_RISCV64
  11. config ADK_TARGET_BINFMT_FLAT
  12. bool "FLAT"
  13. select BUSYBOX_NOMMU
  14. select ADK_TARGET_UCLINUX if ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_ARM
  15. depends on ADK_TARGET_LIB_UCLIBC_NG
  16. depends on !ADK_TARGET_WITH_MMU
  17. depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_SH || ADK_TARGET_ARCH_XTENSA \
  18. || ADK_TARGET_ARCH_H8300 || ADK_TARGET_ARCH_LM32 || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_RISCV64 \
  19. || ADK_TARGET_ARCH_RISCV32
  20. config ADK_TARGET_BINFMT_FDPIC
  21. bool "FDPIC"
  22. select BUSYBOX_NOMMU
  23. depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_FRV || ADK_TARGET_ARCH_SH
  24. config ADK_TARGET_BINFMT_DSBT
  25. bool "DSBT"
  26. select BUSYBOX_NOMMU
  27. depends on ADK_TARGET_ARCH_C6X
  28. endchoice
  29. # Set up flat binary type
  30. choice
  31. prompt "FLAT Binary type"
  32. depends on ADK_TARGET_BINFMT_FLAT && (ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN)
  33. default ADK_TARGET_BINFMT_FLAT_ONE
  34. config ADK_TARGET_BINFMT_FLAT_ONE
  35. bool "One memory region"
  36. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K
  37. help
  38. All segments are linked into one memory region.
  39. config ADK_TARGET_BINFMT_FLAT_SEP_DATA
  40. bool "Separate data and code region"
  41. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K
  42. help
  43. Allow for the data and text segments to be separated and placed in
  44. different regions of memory.
  45. endchoice
  46. source "target/config/Config.in.elf2flt"
  47. config ADK_TARGET_BINFMT
  48. string
  49. depends on !ADK_TARGET_WITH_MMU
  50. default "elf" if ADK_TARGET_BINFMT_ELF
  51. default "flat" if ADK_TARGET_BINFMT_FLAT
  52. default "fdpic" if ADK_TARGET_BINFMT_FDPIC