Re: [yocto] [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install

2013-05-03 Thread Andrei Gherzan
Can't replicate this issue and somebody who experienced it in the past
confirmed me that it was someway fixed. So I will drop this patch.

Thanks.


On Wed, Mar 13, 2013 at 6:47 PM, Andrei Gherzan and...@gherzan.ro wrote:

 Hey Andreas,

 Is this sill needed? Did you test this lately?


 On Sun, Jan 27, 2013 at 4:35 PM, Andreas Müller 
 schnitzelt...@googlemail.com wrote:

 On Sat, Jan 26, 2013 at 11:58 PM, Andrei Gherzan and...@gherzan.ro
 wrote:
  On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote:
  for some reason wildcards don't work in current head. Error message
 was:
 
  | DEBUG: Executing shell function do_install
  | install: cannot stat
 `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*':
 No such file or directory
 
 
  I can't reproduce your error. For me this works. Maybe was something
 broken in
  oe-core? Anyway it seems to be fixed now. Would you retest it please
 Will do that
 
  Signed-off-by: Andreas Müller schnitzelt...@googlemail.com
  ---
   .../xorg-xserver/xserver-xf86-config_0.1.bbappend  |6 --
   1 files changed, 4 insertions(+), 2 deletions(-)
 
  diff --git
 a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
  index 65931e2..a8b8e8c 100644
  --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
  +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
  @@ -1,12 +1,14 @@
   FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:
 
   # Don't forget to bump PRINC if you update the extra files.
  -PRINC := ${@int(PRINC) + 5}
  +PRINC := ${@int(PRINC) + 6}
 
   THISDIR := ${@os.path.dirname(bb.data.getVar('FILE', d, True))}
   FILESPATH =. ${@base_set_filespath([${THISDIR}/${PN}], d)}:
 
  -SRC_URI_append_raspberrypi =  file://xorg.conf.d/* 
  +SRC_URI_append_raspberrypi =  \
  + file://xorg.conf.d/10-evdev.conf \
  +
 
  I don't find this lin ebreak necesssary here. And if it was, don't
 combine
  formating commits with other fixes.
 
 Oops this was left over from some testing.

 Andreas




 --
 *Andrei Gherzan*
 m: +40.744.478.414 |  f: +40.31.816.28.12




-- 
*Andrei Gherzan*
m: +40.744.478.414 |  f: +40.31.816.28.12
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install

2013-05-03 Thread Andreas Müller
On Fri, May 3, 2013 at 11:33 AM, Andrei Gherzan and...@gherzan.ro wrote:
 Can't replicate this issue and somebody who experienced it in the past
 confirmed me that it was someway fixed. So I will drop this patch.

 Thanks.

I think wildcards are qorking currently - you can drop this one

Andreas
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install

2013-01-27 Thread Andreas Müller
On Sat, Jan 26, 2013 at 11:58 PM, Andrei Gherzan and...@gherzan.ro wrote:
 On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote:
 for some reason wildcards don't work in current head. Error message was:

 | DEBUG: Executing shell function do_install
 | install: cannot stat 
 `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*':
  No such file or directory


 I can't reproduce your error. For me this works. Maybe was something broken in
 oe-core? Anyway it seems to be fixed now. Would you retest it please
Will do that

 Signed-off-by: Andreas Müller schnitzelt...@googlemail.com
 ---
  .../xorg-xserver/xserver-xf86-config_0.1.bbappend  |6 --
  1 files changed, 4 insertions(+), 2 deletions(-)

 diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend 
 b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 index 65931e2..a8b8e8c 100644
 --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 @@ -1,12 +1,14 @@
  FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:

  # Don't forget to bump PRINC if you update the extra files.
 -PRINC := ${@int(PRINC) + 5}
 +PRINC := ${@int(PRINC) + 6}

  THISDIR := ${@os.path.dirname(bb.data.getVar('FILE', d, True))}
  FILESPATH =. ${@base_set_filespath([${THISDIR}/${PN}], d)}:

 -SRC_URI_append_raspberrypi =  file://xorg.conf.d/* 
 +SRC_URI_append_raspberrypi =  \
 + file://xorg.conf.d/10-evdev.conf \
 +

 I don't find this lin ebreak necesssary here. And if it was, don't combine
 formating commits with other fixes.

Oops this was left over from some testing.

Andreas
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [meta-raspberrypi][PATCH 2/2] xserver-xf86-config: fix do_install

2013-01-26 Thread Andrei Gherzan
On Thu, Jan 24, 2013 at 10:57:42PM +0100, Andreas Müller wrote:
 for some reason wildcards don't work in current head. Error message was:

 | DEBUG: Executing shell function do_install
 | install: cannot stat 
 `/home/Superandy/tmp/oe-core-eglibc/work/raspberrypi-angstrom-linux-gnueabi/xserver-xf86-config/0.1-r18/xorg.conf.d/*':
  No such file or directory


I can't reproduce your error. For me this works. Maybe was something broken in
oe-core? Anyway it seems to be fixed now. Would you retest it please

 Signed-off-by: Andreas Müller schnitzelt...@googlemail.com
 ---
  .../xorg-xserver/xserver-xf86-config_0.1.bbappend  |6 --
  1 files changed, 4 insertions(+), 2 deletions(-)

 diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend 
 b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 index 65931e2..a8b8e8c 100644
 --- a/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
 @@ -1,12 +1,14 @@
  FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:

  # Don't forget to bump PRINC if you update the extra files.
 -PRINC := ${@int(PRINC) + 5}
 +PRINC := ${@int(PRINC) + 6}

  THISDIR := ${@os.path.dirname(bb.data.getVar('FILE', d, True))}
  FILESPATH =. ${@base_set_filespath([${THISDIR}/${PN}], d)}:

 -SRC_URI_append_raspberrypi =  file://xorg.conf.d/* 
 +SRC_URI_append_raspberrypi =  \
 + file://xorg.conf.d/10-evdev.conf \
 +

I don't find this lin ebreak necesssary here. And if it was, don't combine
formating commits with other fixes.

Thanks,

--
Andrei Gherzan
m: +40.744.478.414 | f: +40.31.816.28.12

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto