Config.in 847 B

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