Config.in 2.0 KB

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