Config.in 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.addons"
  24. comment "After you saved your configuration once, you shouldn't change anything above"
  25. depends on ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  26. source "target/config/Config.in.tasks"
  27. menu "Firmware configuration"
  28. visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  29. source "target/config/Config.in.rootfs"
  30. endmenu
  31. source "target/config/Config.in"
  32. menu "Package selection"
  33. visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  34. source "package/Config.in.auto.global"
  35. source "package/Config.in"
  36. menu "Package options"
  37. source "package/Config.in.options"
  38. endmenu
  39. endmenu
  40. menu "Runtime configuration"
  41. visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  42. source "target/config/Config.in.runtime"
  43. endmenu
  44. menu "Linux Kernel configuration"
  45. visible if ADK_TARGET_OS_LINUX && !ADK_TARGET_CHOOSE_ARCH
  46. source "target/config/Config.in.kernelversion"
  47. source "target/config/Config.in.kernelcfg"
  48. source "target/config/Config.in.kernelcmd"
  49. source "target/linux/config/Config.in.compression"
  50. menu "Advanced Kernel configuration"
  51. 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
  52. source "target/linux/Config.in"
  53. endmenu
  54. endmenu
  55. menu "Frosted configuration"
  56. visible if ADK_TARGET_OS_FROSTED && !ADK_TARGET_CHOOSE_ARCH
  57. source "target/frosted/Config.in"
  58. endmenu
  59. menu "Toolchain settings"
  60. visible if !ADK_TARGET_CHOOSE_ARCH
  61. config ADK_VENDOR
  62. string "Vendor name"
  63. default "openadk"
  64. help
  65. Vendor string is used for toolchain.
  66. source "target/config/Config.in.archopts"
  67. source "target/config/Config.in.fpu"
  68. source "target/config/Config.in.float"
  69. source "target/config/Config.in.binfmt"
  70. source "target/config/Config.in.libc"
  71. source "target/config/Config.in.abi"
  72. source "target/config/Config.in.binutils"
  73. source "target/config/Config.in.compiler"
  74. source "target/config/Config.in.gdb"
  75. source "target/config/Config.in.toolchain"
  76. endmenu
  77. source "target/config/Config.in.adk"