Config.in 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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"
  13. source "target/config/Config.in.os"
  14. source "target/config/Config.in.hardware"
  15. source "target/config/Config.in.boards"
  16. source "target/config/Config.in.kernelfmt"
  17. source "target/config/Config.in.arch"
  18. source "target/config/Config.in.endian"
  19. source "target/config/Config.in.system"
  20. source "target/config/Config.in.systemopts"
  21. source "target/config/Config.in.subsystem"
  22. source "target/config/Config.in.qemuopts"
  23. source "target/config/Config.in.cpu"
  24. source "target/config/Config.in.addons"
  25. comment "After you saved your configuration once, you shouldn't change anything above"
  26. depends on (ADK_TARGET_OS_LINUX || ADK_TARGET_OS_WALDUX) && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  27. source "target/config/Config.in.tasks"
  28. menu "Firmware configuration"
  29. visible if (ADK_TARGET_OS_LINUX || ADK_TARGET_OS_WALDUX) && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
  30. source "target/config/Config.in.rootfs"
  31. endmenu
  32. menu "Package selection"
  33. visible if (ADK_TARGET_OS_LINUX || ADK_TARGET_OS_WALDUX) && !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_TARGET_OS_WALDUX) && !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/linux/Config.in.kernelversion"
  47. source "target/linux/Config.in.kernelcfg"
  48. source "target/linux/config/Config.in.compression"
  49. source "target/config/Config.in.cmdline"
  50. menu "Advanced Linux Kernel configuration"
  51. visible if ADK_TARGET_OS_LINUX && ADK_TARGET_KERNEL_CUSTOMISING && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_LINUX_KERNEL_USE_DEFCONFIG && !ADK_TARGET_LINUX_KERNEL_USE_CUSTOMCONFIG
  52. source "target/linux/Config.in"
  53. endmenu
  54. endmenu
  55. menu "Waldux Kernel configuration"
  56. visible if ADK_TARGET_OS_WALDUX && !ADK_TARGET_CHOOSE_ARCH
  57. source "target/waldux/Config.in.kernelversion"
  58. source "target/waldux/Config.in.kernelcfg"
  59. source "target/waldux/config/Config.in.compression"
  60. source "target/config/Config.in.cmdline"
  61. menu "Advanced Waldux Kernel configuration"
  62. visible if ADK_TARGET_OS_WALDUX && ADK_TARGET_KERNEL_CUSTOMISING && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_WALDUX_KERNEL_USE_DEFCONFIG && !ADK_TARGET_WALDUX_KERNEL_USE_CUSTOMCONFIG
  63. source "target/waldux/Config.in"
  64. endmenu
  65. endmenu
  66. menu "Frosted kernel configuration"
  67. visible if ADK_TARGET_OS_FROSTED && !ADK_TARGET_CHOOSE_ARCH
  68. source "target/frosted/Config.in"
  69. endmenu
  70. menu "Frosted application configuration"
  71. visible if ADK_TARGET_OS_FROSTED && !ADK_TARGET_CHOOSE_ARCH
  72. source "target/frosted/Config.in.apps"
  73. endmenu
  74. menu "Toolchain settings"
  75. visible if !ADK_TARGET_CHOOSE_ARCH
  76. source "target/config/Config.in.archopts"
  77. source "target/config/Config.in.fpu"
  78. source "target/config/Config.in.float"
  79. source "target/config/Config.in.binfmt"
  80. source "target/config/Config.in.libc"
  81. source "target/config/Config.in.abi"
  82. source "target/config/Config.in.binutils"
  83. source "target/config/Config.in.compiler"
  84. source "target/config/Config.in.gdb"
  85. source "target/config/Config.in.toolchain"
  86. endmenu
  87. source "target/config/Config.in.adk"