Config.in 979 B

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