Config.in 877 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. select ADK_TARGET_WITH_SERIAL
  18. config ADK_TARGET_QEMU
  19. bool
  20. select ADK_TARGET_WITH_SERIAL
  21. config ADK_TARGET_VBOX
  22. bool
  23. config ADK_TARGET_ARCH_ARM_WITH_THUMB
  24. bool
  25. select ADK_KERNEL_THUMB2_KERNEL
  26. depends on ADK_TARGET_ARCH_ARM
  27. # the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
  28. # allows for selecting it off (i.e., to disable it)
  29. config ADK_TARGET_FIXED_KERNEL
  30. bool
  31. config ADK_TARGET_KERNEL_CUSTOMISING
  32. bool
  33. depends on !ADK_TARGET_FIXED_KERNEL
  34. default y
  35. source "target/config/Config.in.tools"