Config.in 902 B

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