Config.in.binfmt 1.4 KB

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