Config.in.binfmt 1.5 KB

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