Config.in.target 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. config ADK_TARGET_CMDLINE
  4. string
  5. default "fbcon=rotate:1" if ADK_TARGET_SYSTEM_SHARP_ZAURUS
  6. default "geodewdt.nowayout=1" if ADK_TARGET_MODEL_PCENGINES_ALIX1C
  7. default "kinetis_platform=k70-som" if ADK_TARGET_SYSTEM_KINETIS_K70
  8. default "metag_da.console_poll=1" if ADK_TARGET_SYSTEM_QEMU_METAG
  9. default ""
  10. config ADK_PACKAGE_SUFFIX
  11. string
  12. default "ipk" if ADK_TARGET_PACKAGE_IPKG
  13. default "ipk" if ADK_TARGET_PACKAGE_OPKG
  14. default "tar.xz" if ADK_TARGET_PACKAGE_TXZ
  15. help
  16. choice
  17. prompt "Package format"
  18. default ADK_TARGET_PACKAGE_TXZ
  19. config ADK_TARGET_PACKAGE_TXZ
  20. bool "xz compressed tar archive"
  21. help
  22. Create compressed tar archives of packages.
  23. Pre- and post install scripts will be executed in the target
  24. directory. There will be no package manager installed onto the target.
  25. config ADK_TARGET_PACKAGE_IPKG
  26. bool "ipkg"
  27. select BUSYBOX_IPKG
  28. help
  29. Create ipkg packages and use ipkg package management on the target.
  30. config ADK_TARGET_PACKAGE_OPKG
  31. bool "opkg"
  32. select ADK_PACKAGE_OPKG
  33. select ADK_HOST_NEED_OPKG
  34. help
  35. Create opkg packages and use opkg package management on the target.
  36. endchoice
  37. choice
  38. prompt "GPU memory size"
  39. depends on ADK_TARGET_BOARD_BCM28XX
  40. default ADK_TARGET_GPU_MEM_256 if ADK_PACKAGE_KODI
  41. config ADK_TARGET_GPU_MEM_16
  42. bool "16"
  43. help
  44. use minimal 16 MB.
  45. config ADK_TARGET_GPU_MEM_64
  46. bool "64"
  47. help
  48. use 64 MB.
  49. config ADK_TARGET_GPU_MEM_128
  50. bool "128"
  51. help
  52. use 128 MB.
  53. config ADK_TARGET_GPU_MEM_256
  54. bool "256"
  55. help
  56. use 256 MB.
  57. endchoice
  58. config ADK_TARGET_GPU_MEM
  59. int
  60. default 16 if ADK_TARGET_GPU_MEM_16
  61. default 64 if ADK_TARGET_GPU_MEM_64
  62. default 128 if ADK_TARGET_GPU_MEM_128
  63. default 256 if ADK_TARGET_GPU_MEM_256
  64. depends on ADK_TARGET_BOARD_BCM28XX