Config.in 764 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_TARGET_GENERIC
  9. bool
  10. select ADK_TARGET_WITH_NET
  11. select ADK_TARGET_WITH_NETDEVICE
  12. config ADK_TARGET_UCLINUX
  13. bool
  14. config ADK_TARGET_SIM
  15. bool
  16. select ADK_TOOLCHAIN_WITH_GDB
  17. config ADK_TARGET_QEMU
  18. bool
  19. select ADK_TARGET_WITH_NET
  20. select ADK_TARGET_WITH_NETDEVICE
  21. # the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
  22. # allows for selecting it off (i.e., to disable it)
  23. config ADK_TARGET_FIXED_KERNEL
  24. bool
  25. config ADK_TARGET_KERNEL_CUSTOMISING
  26. bool
  27. depends on !ADK_TARGET_FIXED_KERNEL
  28. default y
  29. source "target/config/Config.in.tools"