Config.in 887 B

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