Config.in 1014 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. select ADK_PACKAGE_SASH
  15. select ADK_PACKAGE_SIMPLEINIT
  16. boolean
  17. config ADK_TARGET_QEMU
  18. boolean
  19. config ADK_TARGET_VBOX
  20. boolean
  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. default n
  26. config ADK_TARGET_KERNEL_CUSTOMISING
  27. bool
  28. default y
  29. depends on !ADK_TARGET_FIXED_KERNEL
  30. choice
  31. prompt "Toolchain options"
  32. depends on ADK_TARGET_TOOLCHAIN
  33. config ADK_TOOLCHAIN_ONLY
  34. boolean "Only build toolchain and selected packages"
  35. config ADK_TOOLCHAIN_ARCHIVE
  36. boolean "Build a complete system usable f.e. via chroot"
  37. endchoice
  38. source "target/config/Config.in.tools"