Config.in.target 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 "earlycon=uart8250,mmio32,0x9d050020,115200n8 console=ttyS0,115200n8" if ADK_TARGET_XTENSA_DE212
  10. default ""
  11. config ADK_PACKAGE_SUFFIX
  12. string
  13. default "ipk" if ADK_TARGET_PACKAGE_IPKG
  14. default "ipk" if ADK_TARGET_PACKAGE_OPKG
  15. default "tar.xz" if ADK_TARGET_PACKAGE_TXZ
  16. help
  17. choice
  18. prompt "Package format"
  19. default ADK_TARGET_PACKAGE_TXZ
  20. config ADK_TARGET_PACKAGE_TXZ
  21. bool "xz compressed tar archive"
  22. help
  23. Create compressed tar archives of packages.
  24. Pre- and post install scripts will be executed in the target
  25. directory. There will be no package manager installed onto the target.
  26. config ADK_TARGET_PACKAGE_IPKG
  27. bool "ipkg"
  28. select BUSYBOX_IPKG
  29. help
  30. Create ipkg packages and use ipkg package management on the target.
  31. config ADK_TARGET_PACKAGE_OPKG
  32. bool "opkg"
  33. select ADK_PACKAGE_OPKG
  34. select ADK_HOST_NEED_OPKG
  35. help
  36. Create opkg packages and use opkg package management on the target.
  37. endchoice
  38. choice
  39. prompt "GPU memory size"
  40. depends on ADK_TARGET_BOARD_BCM28XX
  41. default ADK_TARGET_GPU_MEM_256 if ADK_PACKAGE_KODI
  42. config ADK_TARGET_GPU_MEM_16
  43. bool "16"
  44. help
  45. use minimal 16 MB.
  46. config ADK_TARGET_GPU_MEM_64
  47. bool "64"
  48. help
  49. use 64 MB.
  50. config ADK_TARGET_GPU_MEM_128
  51. bool "128"
  52. help
  53. use 128 MB.
  54. config ADK_TARGET_GPU_MEM_256
  55. bool "256"
  56. help
  57. use 256 MB.
  58. endchoice
  59. config ADK_TARGET_GPU_MEM
  60. int
  61. default 16 if ADK_TARGET_GPU_MEM_16
  62. default 64 if ADK_TARGET_GPU_MEM_64
  63. default 128 if ADK_TARGET_GPU_MEM_128
  64. default 256 if ADK_TARGET_GPU_MEM_256
  65. depends on ADK_TARGET_BOARD_BCM28XX