Config.in 2.5 KB

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