Config.in.binfmt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_ARCH_ARM \
  6. || ADK_TARGET_ARCH_BFIN \
  7. || ADK_TARGET_ARCH_C6X \
  8. || ADK_TARGET_ARCH_H8300\
  9. || ADK_TARGET_ARCH_M68K
  10. config ADK_TARGET_BINFMT_ELF
  11. bool "ELF"
  12. depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K) && !ADK_TARGET_UCLINUX
  13. config ADK_TARGET_BINFMT_FLAT
  14. bool "FLAT"
  15. depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K) && ADK_TARGET_UCLINUX \
  16. || ADK_TARGET_ARCH_H8300
  17. config ADK_TARGET_BINFMT_DSBT
  18. bool "DSBT"
  19. depends on ADK_TARGET_ARCH_C6X
  20. config ADK_TARGET_BINFMT_FDPIC
  21. bool "FDPIC"
  22. depends on ADK_TARGET_ARCH_BFIN
  23. endchoice
  24. # Set up flat binary type
  25. choice
  26. prompt "FLAT Binary type"
  27. depends on ADK_TARGET_BINFMT_FLAT
  28. default ADK_TARGET_BINFMT_FLAT_ONE
  29. config ADK_TARGET_BINFMT_FLAT_ONE
  30. bool "One memory region"
  31. help
  32. All segments are linked into one memory region.
  33. config ADK_TARGET_BINFMT_FLAT_SEP_DATA
  34. bool "Separate data and code region"
  35. depends on ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN
  36. help
  37. Allow for the data and text segments to be separated and placed in
  38. different regions of memory.
  39. config ADK_TARGET_BINFMT_FLAT_SHARED
  40. bool "Shared binary"
  41. select ADK_TARGET_BINFMT_SUPPORTS_SHARED
  42. help
  43. Allow to load and link indiviual FLAT binaries at run time.
  44. endchoice