Config.in 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 kernel configuration"
  56. visible if ADK_TARGET_OS_FROSTED && !ADK_TARGET_CHOOSE_ARCH
  57. source "target/frosted/Config.in"
  58. endmenu
  59. menu "Frosted application configuration"
  60. visible if ADK_TARGET_OS_FROSTED && !ADK_TARGET_CHOOSE_ARCH
  61. source "target/frosted/Config.in.apps"
  62. endmenu
  63. menu "Toolchain settings"
  64. visible if !ADK_TARGET_CHOOSE_ARCH
  65. config ADK_VENDOR
  66. string "Vendor name"
  67. default "openadk"
  68. help
  69. Vendor string is used for toolchain.
  70. source "target/config/Config.in.archopts"
  71. source "target/config/Config.in.fpu"
  72. source "target/config/Config.in.float"
  73. source "target/config/Config.in.binfmt"
  74. source "target/config/Config.in.libc"
  75. source "target/config/Config.in.abi"
  76. source "target/config/Config.in.binutils"
  77. source "target/config/Config.in.compiler"
  78. source "target/config/Config.in.gdb"
  79. source "target/config/Config.in.toolchain"
  80. endmenu
  81. source "target/config/Config.in.adk"