Config.in 844 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. # global symbols
  4. config ADK_LINUX_64
  5. bool
  6. config ADK_TARGET_KERNEL_64
  7. bool
  8. config ADK_TOOLCHAIN_ONLY
  9. bool
  10. config ADK_TARGET_TOOLCHAIN
  11. bool
  12. config ADK_TARGET_UCLINUX
  13. bool
  14. select ADK_TARGET_WITHOUT_CXX
  15. config ADK_TARGET_SIM
  16. bool
  17. config ADK_TARGET_QEMU
  18. bool
  19. config ADK_TARGET_VBOX
  20. bool
  21. config ADK_TARGET_ARCH_ARM_WITH_THUMB
  22. bool
  23. select ADK_KERNEL_ARM_THUMB
  24. select ADK_KERNEL_THUMB2_KERNEL
  25. depends on ADK_TARGET_ARCH_ARM
  26. # the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
  27. # allows for selecting it off (i.e., to disable it)
  28. config ADK_TARGET_FIXED_KERNEL
  29. bool
  30. config ADK_TARGET_KERNEL_CUSTOMISING
  31. bool
  32. depends on !ADK_TARGET_FIXED_KERNEL
  33. default y
  34. source "target/config/Config.in.tools"