All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-handheld][PATCH] formfactor: fix sed expression
@ 2012-07-11 22:33 Andrea Adami
  2012-07-11 23:33 ` Andrea Adami
  2012-07-11 23:40 ` [meta-initramfs][PATCH v2] " Andrea Adami
  0 siblings, 2 replies; 4+ messages in thread
From: Andrea Adami @ 2012-07-11 22:33 UTC (permalink / raw)
  To: openembedded-devel

* a last-minute check was added...with a missing '*'

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 recipes-bsp/formfactor/formfactor_0.0.bbappend |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/formfactor/formfactor_0.0.bbappend b/recipes-bsp/formfactor/formfactor_0.0.bbappend
index e888ec1..22fd9db 100644
--- a/recipes-bsp/formfactor/formfactor_0.0.bbappend
+++ b/recipes-bsp/formfactor/formfactor_0.0.bbappend
@@ -1,10 +1,10 @@
-PRINC := "${@int(PRINC) + 2}"
+PRINC := "${@int(PRINC) + 3}"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
 
 do_install_prepend () {
 	# provide machine-specific /etc/rotation for psplash
-	sed -n 's/^[ \t]DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc '[0-9]' > ${S}/rotation
+	sed -n 's/^[ \t]*DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc '[0-9]' > ${S}/rotation
 	printf "\n" >> ${S}/rotation
 }
 
-- 
1.7.8.6




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

* Re: [meta-handheld][PATCH] formfactor: fix sed expression
  2012-07-11 22:33 [meta-handheld][PATCH] formfactor: fix sed expression Andrea Adami
@ 2012-07-11 23:33 ` Andrea Adami
  2012-07-11 23:40 ` [meta-initramfs][PATCH v2] " Andrea Adami
  1 sibling, 0 replies; 4+ messages in thread
From: Andrea Adami @ 2012-07-11 23:33 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Jul 12, 2012 at 12:33 AM, Andrea Adami <andrea.adami@gmail.com> wrote:
> * a last-minute check was added...with a missing '*'
>
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ---
>  recipes-bsp/formfactor/formfactor_0.0.bbappend |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes-bsp/formfactor/formfactor_0.0.bbappend b/recipes-bsp/formfactor/formfactor_0.0.bbappend
> index e888ec1..22fd9db 100644
> --- a/recipes-bsp/formfactor/formfactor_0.0.bbappend
> +++ b/recipes-bsp/formfactor/formfactor_0.0.bbappend
> @@ -1,10 +1,10 @@
> -PRINC := "${@int(PRINC) + 2}"
> +PRINC := "${@int(PRINC) + 3}"
>
>  FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
>
>  do_install_prepend () {
>         # provide machine-specific /etc/rotation for psplash
> -       sed -n 's/^[ \t]DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc '[0-9]' > ${S}/rotation
> +       sed -n 's/^[ \t]*DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc '[0-9]' > ${S}/rotation
>         printf "\n" >> ${S}/rotation
>  }
>
> --
> 1.7.8.6
>

Please withdraw this patch, v2 is following.

Andrea



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

* [meta-initramfs][PATCH v2] formfactor: fix sed expression
  2012-07-11 22:33 [meta-handheld][PATCH] formfactor: fix sed expression Andrea Adami
  2012-07-11 23:33 ` Andrea Adami
@ 2012-07-11 23:40 ` Andrea Adami
  2012-07-12  0:29   ` Paul Eggleton
  1 sibling, 1 reply; 4+ messages in thread
From: Andrea Adami @ 2012-07-11 23:40 UTC (permalink / raw)
  To: openembedded-devel

* a last-minute check was added...with a missing '*'
* don't add newline so we can easily test -s

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 recipes-bsp/formfactor/formfactor_0.0.bbappend |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/recipes-bsp/formfactor/formfactor_0.0.bbappend b/recipes-bsp/formfactor/formfactor_0.0.bbappend
index e888ec1..b509028 100644
--- a/recipes-bsp/formfactor/formfactor_0.0.bbappend
+++ b/recipes-bsp/formfactor/formfactor_0.0.bbappend
@@ -1,11 +1,10 @@
-PRINC := "${@int(PRINC) + 2}"
+PRINC := "${@int(PRINC) + 3}"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
 
 do_install_prepend () {
 	# provide machine-specific /etc/rotation for psplash
-	sed -n 's/^[ \t]DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc '[0-9]' > ${S}/rotation
-	printf "\n" >> ${S}/rotation
+	sed -n 's/^[ \t]*DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc '[0-9]' > ${S}/rotation
 }
 
 do_install_append () {
-- 
1.7.8.6




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

* Re: [meta-initramfs][PATCH v2] formfactor: fix sed expression
  2012-07-11 23:40 ` [meta-initramfs][PATCH v2] " Andrea Adami
@ 2012-07-12  0:29   ` Paul Eggleton
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2012-07-12  0:29 UTC (permalink / raw)
  To: openembedded-devel

On Thursday 12 July 2012 01:40:50 Andrea Adami wrote:
> * a last-minute check was added...with a missing '*'
> * don't add newline so we can easily test -s
> 
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ---
>  recipes-bsp/formfactor/formfactor_0.0.bbappend |    5 ++---
>  1 files changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/recipes-bsp/formfactor/formfactor_0.0.bbappend
> b/recipes-bsp/formfactor/formfactor_0.0.bbappend index e888ec1..b509028
> 100644
> --- a/recipes-bsp/formfactor/formfactor_0.0.bbappend
> +++ b/recipes-bsp/formfactor/formfactor_0.0.bbappend
> @@ -1,11 +1,10 @@
> -PRINC := "${@int(PRINC) + 2}"
> +PRINC := "${@int(PRINC) + 3}"
> 
>  FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
> 
>  do_install_prepend () {
>  	# provide machine-specific /etc/rotation for psplash
> -	sed -n 's/^[ \t]DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc
> '[0-9]' > ${S}/rotation -	printf "\n" >> ${S}/rotation
> +	sed -n 's/^[ \t]*DISPLAY_ORIENTATION[ \t]*//p' ${S}/machconfig | tr -dc
> '[0-9]' > ${S}/rotation }
> 
>  do_install_append () {

I've now merged the v2 into meta-handheld (not meta-initramfs) master, thanks.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

end of thread, other threads:[~2012-07-12  0:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-11 22:33 [meta-handheld][PATCH] formfactor: fix sed expression Andrea Adami
2012-07-11 23:33 ` Andrea Adami
2012-07-11 23:40 ` [meta-initramfs][PATCH v2] " Andrea Adami
2012-07-12  0:29   ` Paul Eggleton

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.