Config.in.endian.choice 543 B

123456789101112131415161718
  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 ADK_TARGET_ENDIAN_MODE
  4. prompt "Target Endianess"
  5. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
  6. depends on ADK_LINUX_SH || ADK_LINUX_MIPS || ADK_LINUX_MICROBLAZE || ADK_LINUX_MIPS64
  7. depends on !ADK_TARGET_SYSTEM_MIKROTIK_RB532
  8. config ADK_TARGET_LITTLE_ENDIAN
  9. boolean "Little endian"
  10. select ADK_little
  11. config ADK_TARGET_BIG_ENDIAN
  12. boolean "Big endian"
  13. select ADK_big
  14. endchoice