diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-02-27 15:26:58 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2016-02-28 12:48:20 +0100 |
commit | 68b18fa80e90e3a3ca2b7b684f4664bf0a4a1635 (patch) | |
tree | d9a342b5bfdddcee2a47651b3402f43b40f2569e | |
parent | 37e49134386a77e21bd08077f83aa3ecdf578567 (diff) | |
download | meta-raspberrypi-68b18fa80e90e3a3ca2b7b684f4664bf0a4a1635.tar.gz |
rpi-config: Upgrade to tip of tree to get GPU_MEM_1024
Document it in README
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | recipes-bsp/bootfiles/rpi-config_git.bb | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -90,6 +90,8 @@ GPU_MEM_256 : GPU memory in megabyte for the 256MB Raspberry Pi. Ignored by the | |||
90 | 512MB RP. Overrides gpu_mem. Max 192. Default not set. | 90 | 512MB RP. Overrides gpu_mem. Max 192. Default not set. |
91 | GPU_MEM_512 : GPU memory in megabyte for the 512MB Raspberry Pi. Ignored by the | 91 | GPU_MEM_512 : GPU memory in megabyte for the 512MB Raspberry Pi. Ignored by the |
92 | 256MB RP. Overrides gpu_mem. Max 448. Default not set. | 92 | 256MB RP. Overrides gpu_mem. Max 448. Default not set. |
93 | GPU_MEM_1024: GPU memory in megabyte for the 1024MB Raspberry Pi. Ignored by the | ||
94 | 256MB/512MB RP. Overrides gpu_mem. Max 944. Default not set. | ||
93 | 95 | ||
94 | 2.C.Optional - Add purchased license codecs: | 96 | 2.C.Optional - Add purchased license codecs: |
95 | ============================================ | 97 | ============================================ |
diff --git a/recipes-bsp/bootfiles/rpi-config_git.bb b/recipes-bsp/bootfiles/rpi-config_git.bb index aa11b25..4cdffca 100644 --- a/recipes-bsp/bootfiles/rpi-config_git.bb +++ b/recipes-bsp/bootfiles/rpi-config_git.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384 | |||
7 | 7 | ||
8 | COMPATIBLE_MACHINE = "raspberrypi" | 8 | COMPATIBLE_MACHINE = "raspberrypi" |
9 | 9 | ||
10 | SRCREV = "5d2ca5f9bcb1b239c051e20c05a233fd79cf09d5" | 10 | SRCREV = "648ffc470824c43eb0d16c485f4c24816b32cd6f" |
11 | SRC_URI = "git://github.com/Evilpaul/RPi-config.git;protocol=git;branch=master \ | 11 | SRC_URI = "git://github.com/Evilpaul/RPi-config.git;protocol=git;branch=master \ |
12 | " | 12 | " |
13 | 13 | ||
@@ -54,6 +54,9 @@ do_deploy() { | |||
54 | if [ -n "${GPU_MEM_512}" ]; then | 54 | if [ -n "${GPU_MEM_512}" ]; then |
55 | sed -i '/#gpu_mem_512/ c\gpu_mem_512=${GPU_MEM_512}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt | 55 | sed -i '/#gpu_mem_512/ c\gpu_mem_512=${GPU_MEM_512}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt |
56 | fi | 56 | fi |
57 | if [ -n "${GPU_MEM_1024}" ]; then | ||
58 | sed -i '/#gpu_mem_1024/ c\gpu_mem_1024=${GPU_MEM_1024}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt | ||
59 | fi | ||
57 | 60 | ||
58 | # Video camera support | 61 | # Video camera support |
59 | if [ -n "${VIDEO_CAMERA}" ]; then | 62 | if [ -n "${VIDEO_CAMERA}" ]; then |