stlink: add hosttool for stm32 flashing
[openadk.git] / target / config / Config.in.systemopts
blobe0b77042d4bdf3c6a1c8f4ce4539f9a45d4bead4
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 choice
5 prompt "GPU memory size"
6 depends on ADK_TARGET_BOARD_BCM28XX
7 default ADK_TARGET_GPU_MEM_256 if ADK_PACKAGE_KODI
9 config ADK_TARGET_GPU_MEM_16
10        bool "16"
11        help
12          use minimal 16 MB.
14 config ADK_TARGET_GPU_MEM_64
15        bool "64"
16        help
17          use 64 MB.
19 config ADK_TARGET_GPU_MEM_128
20        bool "128"
21        help
22          use 128 MB.
24 config ADK_TARGET_GPU_MEM_256
25        bool "256"
26        help
27          use 256 MB.
29 endchoice
31 config ADK_TARGET_GPU_MEM
32        int
33        default 16 if ADK_TARGET_GPU_MEM_16
34        default 64 if ADK_TARGET_GPU_MEM_64
35        default 128 if ADK_TARGET_GPU_MEM_128
36        default 256 if ADK_TARGET_GPU_MEM_256
37        depends on ADK_TARGET_BOARD_BCM28XX