Config.in 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. boolean
  6. config ADK_TARGET_KERNEL_64
  7. boolean
  8. config ADK_TOOLCHAIN_ONLY
  9. boolean
  10. config ADK_TARGET_TOOLCHAIN
  11. boolean
  12. config ADK_TARGET_UCLINUX
  13. select ADK_TARGET_USE_STATIC_LIBS
  14. boolean
  15. config ADK_TARGET_QEMU
  16. boolean
  17. config ADK_TARGET_VBOX
  18. boolean
  19. # the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
  20. # allows for selecting it off (i.e., to disable it)
  21. config ADK_TARGET_FIXED_KERNEL
  22. bool
  23. default n
  24. config ADK_TARGET_KERNEL_CUSTOMISING
  25. bool
  26. default y
  27. depends on !ADK_TARGET_FIXED_KERNEL
  28. choice
  29. prompt "Toolchain options"
  30. depends on ADK_TARGET_TOOLCHAIN
  31. config ADK_TOOLCHAIN_ONLY
  32. boolean "Only build toolchain and selected packages"
  33. config ADK_TOOLCHAIN_ARCHIVE
  34. boolean "Build a complete system usable f.e. via chroot"
  35. endchoice
  36. source "target/config/Config.in.tools"