Config.in.endian.choice 498 B

1234567891011121314151617
  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. config ADK_TARGET_LITTLE_ENDIAN
  8. boolean "Little endian"
  9. select ADK_little
  10. config ADK_TARGET_BIG_ENDIAN
  11. boolean "Big endian"
  12. select ADK_big
  13. endchoice