All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi][PATCH] rpi-config: fix setting decode_WVC1 in config.txt
@ 2015-08-15 15:08 Jonathan Liu
  2015-08-20 10:57 ` Jonathan Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Liu @ 2015-08-15 15:08 UTC (permalink / raw)
  To: yocto

Signed-off-by: Jonathan Liu <net147@gmail.com>
---
 recipes-bsp/bootfiles/rpi-config_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-raspberrypi][PATCH] rpi-config: fix setting decode_WVC1 in config.txt
  2015-08-15 15:08 [meta-raspberrypi][PATCH] rpi-config: fix setting decode_WVC1 in config.txt Jonathan Liu
@ 2015-08-20 10:57 ` Jonathan Liu
  2015-09-23 22:41   ` Andrei Gherzan
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Liu @ 2015-08-20 10:57 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: yocto

On 16/08/2015 1:08 AM, Jonathan Liu wrote:
> Signed-off-by: Jonathan Liu <net147@gmail.com>
> ---
>   recipes-bsp/bootfiles/rpi-config_git.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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
Bump. It's a simple typo fix. Notice MVC1 should be WVC1.

Regards,
Jonathan


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-raspberrypi][PATCH] rpi-config: fix setting decode_WVC1 in config.txt
  2015-08-20 10:57 ` Jonathan Liu
@ 2015-09-23 22:41   ` Andrei Gherzan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrei Gherzan @ 2015-09-23 22:41 UTC (permalink / raw)
  To: Jonathan Liu; +Cc: yocto

Hello,

On Thu, Aug 20, 2015 at 08:57:54PM +1000, Jonathan Liu wrote:
> On 16/08/2015 1:08 AM, Jonathan Liu wrote:
> >Signed-off-by: Jonathan Liu <net147@gmail.com>
> >---
> >  recipes-bsp/bootfiles/rpi-config_git.bb | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >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
> Bump. It's a simple typo fix. Notice MVC1 should be WVC1.
>
> Regards,
> Jonathan

Merged to master. Thanks.

--
Andrei Gherzan


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-23 22:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-15 15:08 [meta-raspberrypi][PATCH] rpi-config: fix setting decode_WVC1 in config.txt Jonathan Liu
2015-08-20 10:57 ` Jonathan Liu
2015-09-23 22:41   ` Andrei Gherzan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.