Config.in.binfmt 1.5 KB

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