Config.in.binfmt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 && !ADK_TARGET_CHOOSE_ARCH
  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 BUSYBOX_NOMMU
  12. select ADK_TARGET_UCLINUX if ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_ARM
  13. depends on ADK_TARGET_LIB_UCLIBC_NG
  14. depends on !ADK_TARGET_WITH_MMU
  15. depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_SH || ADK_TARGET_ARCH_XTENSA \
  16. || ADK_TARGET_ARCH_H8300 || ADK_TARGET_ARCH_LM32 || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_RISCV64
  17. config ADK_TARGET_BINFMT_FDPIC
  18. bool "FDPIC"
  19. select BUSYBOX_NOMMU
  20. depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_FRV || ADK_TARGET_ARCH_SH
  21. config ADK_TARGET_BINFMT_DSBT
  22. bool "DSBT"
  23. select BUSYBOX_NOMMU
  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_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. endchoice
  43. config ADK_TARGET_BINFMT
  44. string
  45. depends on ADK_TARGET_ARCH_BFIN
  46. default "flat" if ADK_TARGET_BINFMT_FLAT
  47. default "fdpic" if ADK_TARGET_BINFMT_FDPIC