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 || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_C6X
  6. config ADK_TARGET_BINFMT_ELF
  7. bool "ELF"
  8. depends on !ADK_TARGET_ARCH_C6X
  9. depends on !ADK_TARGET_ARCH_BFIN
  10. depends on !ADK_TARGET_ARCH_ARM
  11. config ADK_TARGET_BINFMT_DSBT
  12. bool "DSBT"
  13. depends on ADK_TARGET_ARCH_C6X
  14. depends on !ADK_TARGET_ARCH_BFIN
  15. depends on !ADK_TARGET_ARCH_M68K
  16. depends on !ADK_TARGET_ARCH_ARM
  17. config ADK_TARGET_BINFMT_FDPIC
  18. bool "FDPIC"
  19. depends on ADK_TARGET_ARCH_BFIN
  20. depends on !ADK_TARGET_ARCH_C6X
  21. depends on !ADK_TARGET_ARCH_ARM
  22. config ADK_TARGET_BINFMT_FLAT
  23. bool "FLAT"
  24. depends on !ADK_TARGET_ARCH_C6X
  25. depends on ADK_TARGET_ARCH_ARM && ADK_TARGET_UCLINUX
  26. endchoice
  27. # Set up flat binary type
  28. choice
  29. prompt "FLAT Binary type"
  30. depends on ADK_TARGET_BINFMT_FLAT
  31. default ADK_TARGET_BINFMT_FLAT_ONE
  32. config ADK_TARGET_BINFMT_FLAT_ONE
  33. bool "One memory region"
  34. help
  35. All segments are linked into one memory region.
  36. config ADK_TARGET_BINFMT_FLAT_SEP_DATA
  37. bool "Separate data and code region"
  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