Config.in.binfmt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_OS_LINUX
  6. config ADK_TARGET_BINFMT_ELF
  7. bool "ELF"
  8. depends on ADK_TARGET_WITH_MMU
  9. config ADK_TARGET_BINFMT_FLAT
  10. bool "FLAT"
  11. select ADK_TARGET_UCLINUX if ADK_TARGET_ARCH_BFIN
  12. depends on ADK_TARGET_LIB_UCLIBC_NG
  13. depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_SH || ADK_TARGET_ARCH_XTENSA) && ADK_TARGET_WITHOUT_MMU \
  14. || ADK_TARGET_ARCH_H8300 || ADK_TARGET_ARCH_LM32 || ADK_TARGET_ARCH_BFIN
  15. config ADK_TARGET_BINFMT_FDPIC
  16. bool "FDPIC"
  17. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_FRV || ADK_TARGET_ARCH_SH
  18. config ADK_TARGET_BINFMT_DSBT
  19. bool "DSBT"
  20. depends on ADK_TARGET_ARCH_C6X
  21. endchoice
  22. config ADK_TARGET_BINFMT_FLAT
  23. bool
  24. depends on ADK_TARGET_OS_FROSTED
  25. default y
  26. # Set up flat binary type
  27. choice
  28. prompt "FLAT Binary type"
  29. depends on ADK_TARGET_BINFMT_FLAT && (ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN)
  30. default ADK_TARGET_BINFMT_FLAT_ONE
  31. config ADK_TARGET_BINFMT_FLAT_ONE
  32. bool "One memory region"
  33. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K
  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. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K
  39. help
  40. Allow for the data and text segments to be separated and placed in
  41. different regions of memory.
  42. config ADK_TARGET_BINFMT_FLAT_SHARED
  43. bool "Shared binary"
  44. help
  45. Allow to load and link indiviual FLAT binaries at run time.
  46. endchoice
  47. config ADK_TARGET_BINFMT
  48. string
  49. depends on ADK_TARGET_ARCH_BFIN
  50. default "flat" if ADK_TARGET_BINFMT_FLAT
  51. default "fdpic" if ADK_TARGET_BINFMT_FDPIC