Config.in.binfmt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. select ADK_TARGET_USE_STATIC_LIBS_ONLY if !ADK_TARGET_WITH_MMU
  9. depends on ADK_TARGET_WITH_MMU || ADK_TARGET_ARCH_ARM || \
  10. ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_RISCV64
  11. config ADK_TARGET_BINFMT_FLAT
  12. bool "FLAT"
  13. select BUSYBOX_NOMMU
  14. select ADK_TARGET_UCLINUX if ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_ARM
  15. depends on ADK_TARGET_LIB_UCLIBC_NG
  16. depends on !ADK_TARGET_WITH_MMU
  17. depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_SH || ADK_TARGET_ARCH_XTENSA \
  18. || ADK_TARGET_ARCH_H8300 || ADK_TARGET_ARCH_LM32 || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_RISCV64 \
  19. || ADK_TARGET_ARCH_RISCV32
  20. config ADK_TARGET_BINFMT_FDPIC
  21. bool "FDPIC"
  22. select BUSYBOX_NOMMU
  23. depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_FRV || ADK_TARGET_ARCH_SH
  24. depends on !ADK_TARGET_WITH_MMU
  25. config ADK_TARGET_BINFMT_DSBT
  26. bool "DSBT"
  27. select BUSYBOX_NOMMU
  28. depends on ADK_TARGET_ARCH_C6X
  29. endchoice
  30. # Set up flat binary type
  31. choice
  32. prompt "FLAT Binary type"
  33. depends on ADK_TARGET_BINFMT_FLAT && (ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN)
  34. default ADK_TARGET_BINFMT_FLAT_ONE
  35. config ADK_TARGET_BINFMT_FLAT_ONE
  36. bool "One memory region"
  37. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K
  38. help
  39. All segments are linked into one memory region.
  40. config ADK_TARGET_BINFMT_FLAT_SEP_DATA
  41. bool "Separate data and code region"
  42. depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K
  43. help
  44. Allow for the data and text segments to be separated and placed in
  45. different regions of memory.
  46. endchoice
  47. source "target/config/Config.in.elf2flt"
  48. config ADK_TARGET_BINFMT
  49. string
  50. depends on !ADK_TARGET_WITH_MMU
  51. default "elf" if ADK_TARGET_BINFMT_ELF
  52. default "flat" if ADK_TARGET_BINFMT_FLAT
  53. default "fdpic" if ADK_TARGET_BINFMT_FDPIC