summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-02-27 15:26:58 +0000
committerAndrei Gherzan <andrei@gherzan.ro>2016-02-28 12:48:20 +0100
commit68b18fa80e90e3a3ca2b7b684f4664bf0a4a1635 (patch)
treed9a342b5bfdddcee2a47651b3402f43b40f2569e
parent37e49134386a77e21bd08077f83aa3ecdf578567 (diff)
downloadmeta-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--README2
-rw-r--r--recipes-bsp/bootfiles/rpi-config_git.bb5
2 files changed, 6 insertions, 1 deletions
diff --git a/README b/README
index 16ac1cb..efe885b 100644
--- a/README
+++ b/README
@@ -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.
91GPU_MEM_512 : GPU memory in megabyte for the 512MB Raspberry Pi. Ignored by the 91GPU_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.
93GPU_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
942.C.Optional - Add purchased license codecs: 962.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
8COMPATIBLE_MACHINE = "raspberrypi" 8COMPATIBLE_MACHINE = "raspberrypi"
9 9
10SRCREV = "5d2ca5f9bcb1b239c051e20c05a233fd79cf09d5" 10SRCREV = "648ffc470824c43eb0d16c485f4c24816b32cd6f"
11SRC_URI = "git://github.com/Evilpaul/RPi-config.git;protocol=git;branch=master \ 11SRC_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