Config.in 2.6 KB

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