Config.in 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. mainmenu "OpenADK Configuration"
  4. # enable tristate
  5. config ADK_MODULES
  6. bool
  7. option modules
  8. default y
  9. config ADK_HAVE_DOT_CONFIG
  10. bool
  11. default y
  12. source "target/config/Config.in.os"
  13. source "target/config/Config.in.hardware"
  14. source "target/config/Config.in.boards"
  15. source "target/config/Config.in.kernelfmt"
  16. source "target/config/Config.in.arch"
  17. source "target/config/Config.in.endian"
  18. source "target/config/Config.in.system"
  19. source "target/config/Config.in.systemopts"
  20. source "target/config/Config.in.subsystem"
  21. source "target/config/Config.in.qemuopts"
  22. source "target/config/Config.in.cpu"
  23. source "target/config/Config.in.tasks"
  24. source "target/config/Config.in.rootfs"
  25. source "target/config/Config.in"
  26. menu "Package selection"
  27. visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  28. source "package/Config.in.auto.global"
  29. source "package/Config.in"
  30. menu "Package options"
  31. source "package/Config.in.options"
  32. endmenu
  33. endmenu
  34. menu "Runtime configuration"
  35. visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  36. source "target/config/Config.in.runtime"
  37. endmenu
  38. menu "Linux Kernel configuration"
  39. visible if ADK_TARGET_OS_LINUX
  40. source "target/config/Config.in.kernelversion"
  41. source "target/config/Config.in.kernelcfg"
  42. source "target/config/Config.in.kernelcmd"
  43. source "target/linux/config/Config.in.compression"
  44. menu "Advanced Kernel configuration"
  45. visible if ADK_TARGET_OS_LINUX && ADK_TARGET_KERNEL_CUSTOMISING && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_KERNEL_USE_DEFCONFIG && !ADK_TARGET_KERNEL_USE_CUSTOMCONFIG
  46. source "target/linux/Config.in"
  47. endmenu
  48. endmenu
  49. menu "Toolchain settings"
  50. visible if !ADK_TARGET_CHOOSE_ARCH
  51. config ADK_VENDOR
  52. string "Vendor name"
  53. default "openadk"
  54. help
  55. Vendor string is used for toolchain.
  56. source "target/config/Config.in.archopts"
  57. source "target/config/Config.in.fpu"
  58. source "target/config/Config.in.float"
  59. source "target/config/Config.in.binfmt"
  60. source "target/config/Config.in.libc"
  61. source "target/config/Config.in.abi"
  62. source "target/config/Config.in.binutils"
  63. source "target/config/Config.in.compiler"
  64. source "target/config/Config.in.gdb"
  65. source "target/config/Config.in.toolchain"
  66. endmenu
  67. source "target/config/Config.in.adk"