diff options
author | Jonathan Liu <net147@gmail.com> | 2015-08-16 01:08:28 +1000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2015-09-24 01:40:38 +0300 |
commit | c6f7ec52cfe47e3f13646a76ee5c7d7f24581ef3 (patch) | |
tree | 854179ab379e85e9dedf93b8d4c5886a8da47441 | |
parent | bdbe28d7f39813f6f7305d48240c8c7d57102d57 (diff) | |
download | meta-raspberrypi-c6f7ec52cfe47e3f13646a76ee5c7d7f24581ef3.tar.gz meta-raspberrypi-c6f7ec52cfe47e3f13646a76ee5c7d7f24581ef3.tar.bz2 meta-raspberrypi-c6f7ec52cfe47e3f13646a76ee5c7d7f24581ef3.zip |
rpi-config: fix setting decode_WVC1 in config.txt
Signed-off-by: Jonathan Liu <net147@gmail.com>
-rw-r--r-- | recipes-bsp/bootfiles/rpi-config_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/bootfiles/rpi-config_git.bb b/recipes-bsp/bootfiles/rpi-config_git.bb index 29ced34..45b9f1d 100644 --- a/recipes-bsp/bootfiles/rpi-config_git.bb +++ b/recipes-bsp/bootfiles/rpi-config_git.bb @@ -26,7 +26,7 @@ do_deploy() { sed -i '/#decode_MPG2/ c\decode_MPG2=${KEY_DECODE_MPG2}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt fi if [ -n "${KEY_DECODE_WVC1}" ]; then - sed -i '/#decode_WVC1/ c\decode_MVC1=${KEY_DECODE_WVC1}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt + sed -i '/#decode_WVC1/ c\decode_WVC1=${KEY_DECODE_WVC1}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt fi if [ -n "${DISABLE_OVERSCAN}" ]; then sed -i '/#disable_overscan/ c\disable_overscan=${DISABLE_OVERSCAN}' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt |