All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix X issue on crownbay
@ 2012-09-06  0:59 nitin.a.kamble
  2012-09-06  0:59 ` [PATCH 1/1] emgd-driver-bin: Fix package naming issue nitin.a.kamble
  2012-09-10 23:34 ` [PATCH 0/1] Fix X issue on crownbay Tom Zanussi
  0 siblings, 2 replies; 13+ messages in thread
From: nitin.a.kamble @ 2012-09-06  0:59 UTC (permalink / raw)
  To: tom.zanussi, darren.hart, yocto

From: Nitin A Kamble <nitin.a.kamble@intel.com>

The following changes since commit 66b516f3d3a287eecbf8804b2221bfc27e36db63:

  README: add info explaining meta-tlk layer purpose (2012-09-06 10:36:02 -0500)

are available in the git repository at:
  git://git.yoctoproject.org/meta-intel-contrib nitin/work
  http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=nitin/work

Nitin A Kamble (1):
  emgd-driver-bin: Fix package naming issue

 .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

-- 
1.7.3.4



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

* [PATCH 1/1] emgd-driver-bin: Fix package naming issue
  2012-09-06  0:59 [PATCH 0/1] Fix X issue on crownbay nitin.a.kamble
@ 2012-09-06  0:59 ` nitin.a.kamble
  2012-09-07  9:29   ` Burton, Ross
  2012-09-10 23:34 ` [PATCH 0/1] Fix X issue on crownbay Tom Zanussi
  1 sibling, 1 reply; 13+ messages in thread
From: nitin.a.kamble @ 2012-09-06  0:59 UTC (permalink / raw)
  To: tom.zanussi, darren.hart, yocto

From: Nitin A Kamble <nitin.a.kamble@intel.com>

emgd-driver-bin is generating rpm package with name libegl1.
This name clashes with a package of mesa-dri recipe. This name
clash blocks installation of emgd user land binaries in the
image. And due to missing emgd user land components X fails start
on BSPs like crownbay.

Fix this problem by specifying package names in the recipe with the
PKG_ vars.

This fixes bug: [YOCTO #3063]

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.14.bb b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.14.bb
index b1ba1b8..1e01972 100644
--- a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.14.bb
+++ b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.14.bb
@@ -7,7 +7,7 @@ to LICENSE_FLAGS_WHITELIST += \"License_emgd-driver-bin_1.14\" to your \
 local.conf in order to enable it in a build."
 LICENSE = "Intel-binary-only"
 LICENSE_FLAGS = "license_${PN}_${PV}"
-PR = "r1"
+PR = "r2"
 
 EMGD_LIC_DIR = "IEMGD_HEAD_Linux/License"
 EMGD_RPM_DIR = "IEMGD_HEAD_Linux/MeeGo1.2"
@@ -23,6 +23,12 @@ SRC_URI = "https://edc.intel.com/Download.aspx?id=6190;downloadfilename=LIN_IEMG
 SRC_URI[md5sum] = "733a7f237ffce21238ce2c9956df4fd6"
 SRC_URI[sha256sum] = "bcdc333b5edbda7c746a83ef821ded4a0ca55ead30980e4e3680cdb6469f45a2"
 
+# make sure geenrated rpm packages get non conflicting names
+PKG_${PN} = "emgd_driver"
+PKG_${PN}-dev = "emgd_driver-dev"
+PKG_${PN}-dbg = "emgd_driver-dbg"
+PKG_${PN}-doc = "emgd_driver-doc"
+
 # These are closed binaries generated elsewhere so don't check ldflags
 INSANE_SKIP_${PN} = "ldflags"
 
-- 
1.7.3.4



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

* Re: [PATCH 1/1] emgd-driver-bin: Fix package naming issue
  2012-09-06  0:59 ` [PATCH 1/1] emgd-driver-bin: Fix package naming issue nitin.a.kamble
@ 2012-09-07  9:29   ` Burton, Ross
  2012-09-07 17:32     ` Kamble, Nitin A
  0 siblings, 1 reply; 13+ messages in thread
From: Burton, Ross @ 2012-09-07  9:29 UTC (permalink / raw)
  To: nitin.a.kamble; +Cc: yocto, darren.hart

On 6 September 2012 01:59,  <nitin.a.kamble@intel.com> wrote:
> emgd-driver-bin is generating rpm package with name libegl1.
> This name clashes with a package of mesa-dri recipe. This name
> clash blocks installation of emgd user land binaries in the
> image. And due to missing emgd user land components X fails start
> on BSPs like crownbay.
>
> Fix this problem by specifying package names in the recipe with the
> PKG_ vars.

Could we name the packages with a -emgd suffix, such as libegl-emgd?
I'm going to fix mesa to name it's packages libegl-mesa and so on, so
consistency would make everything a lot easier (see my mail to oe-core
yesterday about GL).

Ross


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

* Re: [PATCH 1/1] emgd-driver-bin: Fix package naming issue
  2012-09-07  9:29   ` Burton, Ross
@ 2012-09-07 17:32     ` Kamble, Nitin A
  0 siblings, 0 replies; 13+ messages in thread
From: Kamble, Nitin A @ 2012-09-07 17:32 UTC (permalink / raw)
  To: Burton, Ross; +Cc: yocto@yoctoproject.org, Hart, Darren



> -----Original Message-----
> From: Burton, Ross [mailto:ross.burton@intel.com]
> Sent: Friday, September 07, 2012 2:29 AM
> To: Kamble, Nitin A
> Cc: Zanussi, Tom; Hart, Darren; yocto@yoctoproject.org
> Subject: Re: [yocto] [PATCH 1/1] emgd-driver-bin: Fix package naming issue
> 
> On 6 September 2012 01:59,  <nitin.a.kamble@intel.com> wrote:
> > emgd-driver-bin is generating rpm package with name libegl1.
> > This name clashes with a package of mesa-dri recipe. This name clash
> > blocks installation of emgd user land binaries in the image. And due
> > to missing emgd user land components X fails start on BSPs like
> > crownbay.
> >
> > Fix this problem by specifying package names in the recipe with the
> > PKG_ vars.
> 
> Could we name the packages with a -emgd suffix, such as libegl-emgd?
> I'm going to fix mesa to name it's packages libegl-mesa and so on, so
> consistency would make everything a lot easier (see my mail to oe-core
> yesterday about GL).
> 
> Ross


The package generated has lot of other libraries. And IMO the most important in that is emgd-drv. Libegl is one of the many supporting libraries in the package. So to me renaming package to emgd-drv makes more sense than extending the name to libegl-emgd.

Nitin


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-06  0:59 [PATCH 0/1] Fix X issue on crownbay nitin.a.kamble
  2012-09-06  0:59 ` [PATCH 1/1] emgd-driver-bin: Fix package naming issue nitin.a.kamble
@ 2012-09-10 23:34 ` Tom Zanussi
  2012-09-12 16:18   ` Kamble, Nitin A
  2012-09-12 20:14   ` Kamble, Nitin A
  1 sibling, 2 replies; 13+ messages in thread
From: Tom Zanussi @ 2012-09-10 23:34 UTC (permalink / raw)
  To: nitin.a.kamble; +Cc: darren.hart, yocto

On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
> 
> The following changes since commit 66b516f3d3a287eecbf8804b2221bfc27e36db63:
> 
>   README: add info explaining meta-tlk layer purpose (2012-09-06 10:36:02 -0500)
> 
> are available in the git repository at:
>   git://git.yoctoproject.org/meta-intel-contrib nitin/work
>   http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=nitin/work
> 

I built and tried this, but it still didn't boot into X, and now there's
not even an Xorg.log to look at:

root@crownbay:/var/log# ls -al
drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
-rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
-rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp

I assume this is a different X problem related to recent changes in
mater.  Can you update the bug report with the commits that you tested
with so I can verify that your patch at least works?

Thanks,

Tom



> Nitin A Kamble (1):
>   emgd-driver-bin: Fix package naming issue
> 
>  .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
>  1 files changed, 7 insertions(+), 1 deletions(-)
> 




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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-10 23:34 ` [PATCH 0/1] Fix X issue on crownbay Tom Zanussi
@ 2012-09-12 16:18   ` Kamble, Nitin A
  2012-09-12 20:14   ` Kamble, Nitin A
  1 sibling, 0 replies; 13+ messages in thread
From: Kamble, Nitin A @ 2012-09-12 16:18 UTC (permalink / raw)
  To: Zanussi, Tom; +Cc: Hart, Darren, yocto@yoctoproject.org

Hi Tom,
  Thanks for looking into the matter. I will try to reproduce the issue you are seeing with master. And send another pull request with all the fixes.

Regards,
Nitin


> -----Original Message-----
> From: Zanussi, Tom
> Sent: Monday, September 10, 2012 4:34 PM
> To: Kamble, Nitin A
> Cc: Hart, Darren; yocto@yoctoproject.org
> Subject: Re: [PATCH 0/1] Fix X issue on crownbay
> 
> On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
> > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> >
> > The following changes since commit
> 66b516f3d3a287eecbf8804b2221bfc27e36db63:
> >
> >   README: add info explaining meta-tlk layer purpose (2012-09-06
> > 10:36:02 -0500)
> >
> > are available in the git repository at:
> >   git://git.yoctoproject.org/meta-intel-contrib nitin/work
> >
> > http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=nitin/w
> > ork
> >
> 
> I built and tried this, but it still didn't boot into X, and now there's not even an
> Xorg.log to look at:
> 
> root@crownbay:/var/log# ls -al
> drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
> drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
> -rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
> -rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp
> 
> I assume this is a different X problem related to recent changes in mater.
> Can you update the bug report with the commits that you tested with so I
> can verify that your patch at least works?
> 
> Thanks,
> 
> Tom
> 
> 
> 
> > Nitin A Kamble (1):
> >   emgd-driver-bin: Fix package naming issue
> >
> >  .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
> >  1 files changed, 7 insertions(+), 1 deletions(-)
> >
> 


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-10 23:34 ` [PATCH 0/1] Fix X issue on crownbay Tom Zanussi
  2012-09-12 16:18   ` Kamble, Nitin A
@ 2012-09-12 20:14   ` Kamble, Nitin A
  2012-09-12 20:43     ` Burton, Ross
  2012-09-12 20:57     ` Bodke, Kishore K
  1 sibling, 2 replies; 13+ messages in thread
From: Kamble, Nitin A @ 2012-09-12 20:14 UTC (permalink / raw)
  To: Zanussi, Tom; +Cc: Hart, Darren, yocto@yoctoproject.org

FYI While testing on the fishriver platform, I also find that there is no X log, and looking further found out that xorg executable is not on the image. I think the same thing is also happening on crownbay.

Nitin



> -----Original Message-----
> From: Kamble, Nitin A
> Sent: Wednesday, September 12, 2012 9:18 AM
> To: Zanussi, Tom
> Cc: Hart, Darren; yocto@yoctoproject.org
> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
> 
> Hi Tom,
>   Thanks for looking into the matter. I will try to reproduce the issue you are
> seeing with master. And send another pull request with all the fixes.
> 
> Regards,
> Nitin
> 
> 
> > -----Original Message-----
> > From: Zanussi, Tom
> > Sent: Monday, September 10, 2012 4:34 PM
> > To: Kamble, Nitin A
> > Cc: Hart, Darren; yocto@yoctoproject.org
> > Subject: Re: [PATCH 0/1] Fix X issue on crownbay
> >
> > On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
> > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> > >
> > > The following changes since commit
> > 66b516f3d3a287eecbf8804b2221bfc27e36db63:
> > >
> > >   README: add info explaining meta-tlk layer purpose (2012-09-06
> > > 10:36:02 -0500)
> > >
> > > are available in the git repository at:
> > >   git://git.yoctoproject.org/meta-intel-contrib nitin/work
> > >
> > > http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=nitin
> > > /w
> > > ork
> > >
> >
> > I built and tried this, but it still didn't boot into X, and now
> > there's not even an Xorg.log to look at:
> >
> > root@crownbay:/var/log# ls -al
> > drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
> > drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
> > -rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
> > -rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp
> >
> > I assume this is a different X problem related to recent changes in mater.
> > Can you update the bug report with the commits that you tested with so
> > I can verify that your patch at least works?
> >
> > Thanks,
> >
> > Tom
> >
> >
> >
> > > Nitin A Kamble (1):
> > >   emgd-driver-bin: Fix package naming issue
> > >
> > >  .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
> > >  1 files changed, 7 insertions(+), 1 deletions(-)
> > >
> >


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-12 20:14   ` Kamble, Nitin A
@ 2012-09-12 20:43     ` Burton, Ross
  2012-09-13 19:56       ` Kamble, Nitin A
  2012-09-12 20:57     ` Bodke, Kishore K
  1 sibling, 1 reply; 13+ messages in thread
From: Burton, Ross @ 2012-09-12 20:43 UTC (permalink / raw)
  To: Kamble, Nitin A; +Cc: yocto@yoctoproject.org, Hart, Darren

On 12 September 2012 21:14, Kamble, Nitin A <nitin.a.kamble@intel.com> wrote:
> FYI While testing on the fishriver platform, I also find that there is no X log, and looking further found out that xorg executable is not on the image. I think the same thing is also happening on crownbay.

There have been transient reports of Xorg missing in the qemu images
too -- transient because the reporter said that the next day's
autobuilt image had the package installed again.  Very odd.

In the broken systems you say there is no Xorg binary. Can you confirm
that there is no xserver-xorg package too?  Can you inspect the build
and see if this failed, or if there is some machine configuration
disaster which means it doesn't think it needs to install an xserver?

Ross

FWIW, my qemuarm image from earlier today works.


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-12 20:14   ` Kamble, Nitin A
  2012-09-12 20:43     ` Burton, Ross
@ 2012-09-12 20:57     ` Bodke, Kishore K
  2012-09-13 19:57       ` Kamble, Nitin A
  1 sibling, 1 reply; 13+ messages in thread
From: Bodke, Kishore K @ 2012-09-12 20:57 UTC (permalink / raw)
  To: Kamble, Nitin A, Zanussi, Tom; +Cc: Hart, Darren, yocto@yoctoproject.org



>-----Original Message-----
>From: yocto-bounces@yoctoproject.org [mailto:yocto-
>bounces@yoctoproject.org] On Behalf Of Kamble, Nitin A
>Sent: Wednesday, September 12, 2012 1:14 PM
>To: Zanussi, Tom
>Cc: Hart, Darren; yocto@yoctoproject.org
>Subject: Re: [yocto] [PATCH 0/1] Fix X issue on crownbay
>
>FYI While testing on the fishriver platform, I also find that there is no X log, and
>looking further found out that xorg executable is not on the image. I think the
>same thing is also happening on crownbay.

FYI.. I also see the similar issue for Romley.  
There is no Xlog and X does not comes up.

Thanks
Kishore.

>
>Nitin
>
>
>
>> -----Original Message-----
>> From: Kamble, Nitin A
>> Sent: Wednesday, September 12, 2012 9:18 AM
>> To: Zanussi, Tom
>> Cc: Hart, Darren; yocto@yoctoproject.org
>> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>>
>> Hi Tom,
>>   Thanks for looking into the matter. I will try to reproduce the issue you are
>> seeing with master. And send another pull request with all the fixes.
>>
>> Regards,
>> Nitin
>>
>>
>> > -----Original Message-----
>> > From: Zanussi, Tom
>> > Sent: Monday, September 10, 2012 4:34 PM
>> > To: Kamble, Nitin A
>> > Cc: Hart, Darren; yocto@yoctoproject.org
>> > Subject: Re: [PATCH 0/1] Fix X issue on crownbay
>> >
>> > On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
>> > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
>> > >
>> > > The following changes since commit
>> > 66b516f3d3a287eecbf8804b2221bfc27e36db63:
>> > >
>> > >   README: add info explaining meta-tlk layer purpose (2012-09-06
>> > > 10:36:02 -0500)
>> > >
>> > > are available in the git repository at:
>> > >   git://git.yoctoproject.org/meta-intel-contrib nitin/work
>> > >
>> > > http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=nitin
>> > > /w
>> > > ork
>> > >
>> >
>> > I built and tried this, but it still didn't boot into X, and now
>> > there's not even an Xorg.log to look at:
>> >
>> > root@crownbay:/var/log# ls -al
>> > drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
>> > drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
>> > -rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
>> > -rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp
>> >
>> > I assume this is a different X problem related to recent changes in mater.
>> > Can you update the bug report with the commits that you tested with so
>> > I can verify that your patch at least works?
>> >
>> > Thanks,
>> >
>> > Tom
>> >
>> >
>> >
>> > > Nitin A Kamble (1):
>> > >   emgd-driver-bin: Fix package naming issue
>> > >
>> > >  .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
>> > >  1 files changed, 7 insertions(+), 1 deletions(-)
>> > >
>> >
>
>_______________________________________________
>yocto mailing list
>yocto@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/yocto


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-12 20:43     ` Burton, Ross
@ 2012-09-13 19:56       ` Kamble, Nitin A
  0 siblings, 0 replies; 13+ messages in thread
From: Kamble, Nitin A @ 2012-09-13 19:56 UTC (permalink / raw)
  To: Burton, Ross; +Cc: yocto@yoctoproject.org, Hart, Darren

Ross,
  Looking at the bug, I am trying with the latest commits now. When it failed, I looked at the build area, and found that the xorg-xserver package was built fine. I think the issue happened in the with rootfs generation. I haven't found why it was not included in the rootfs. From the bug I thought the issue got resolved in the latest tree HEAD, so I am going to test the latest head on few BSPs, and will dig further if I encounter the issue again.

Nitin


> -----Original Message-----
> From: Burton, Ross [mailto:ross.burton@intel.com]
> Sent: Wednesday, September 12, 2012 1:43 PM
> To: Kamble, Nitin A
> Cc: Zanussi, Tom; Hart, Darren; yocto@yoctoproject.org
> Subject: Re: [yocto] [PATCH 0/1] Fix X issue on crownbay
> 
> On 12 September 2012 21:14, Kamble, Nitin A <nitin.a.kamble@intel.com>
> wrote:
> > FYI While testing on the fishriver platform, I also find that there is no X log,
> and looking further found out that xorg executable is not on the image. I
> think the same thing is also happening on crownbay.
> 
> There have been transient reports of Xorg missing in the qemu images too --
> transient because the reporter said that the next day's autobuilt image had
> the package installed again.  Very odd.
> 
> In the broken systems you say there is no Xorg binary. Can you confirm that
> there is no xserver-xorg package too?  Can you inspect the build and see if
> this failed, or if there is some machine configuration disaster which means it
> doesn't think it needs to install an xserver?
> 
> Ross
> 
> FWIW, my qemuarm image from earlier today works.

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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-12 20:57     ` Bodke, Kishore K
@ 2012-09-13 19:57       ` Kamble, Nitin A
  2012-09-19  2:35         ` Bodke, Kishore K
  0 siblings, 1 reply; 13+ messages in thread
From: Kamble, Nitin A @ 2012-09-13 19:57 UTC (permalink / raw)
  To: Bodke, Kishore K, Zanussi, Tom; +Cc: Hart, Darren, yocto@yoctoproject.org

Thanks Kishore for reporting it. I am trying to get to bottom of this by today or tomorrow.

Thanks,
Nitin


> -----Original Message-----
> From: Bodke, Kishore K
> Sent: Wednesday, September 12, 2012 1:57 PM
> To: Kamble, Nitin A; Zanussi, Tom
> Cc: Hart, Darren; yocto@yoctoproject.org
> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
> 
> 
> 
> >-----Original Message-----
> >From: yocto-bounces@yoctoproject.org [mailto:yocto-
> >bounces@yoctoproject.org] On Behalf Of Kamble, Nitin A
> >Sent: Wednesday, September 12, 2012 1:14 PM
> >To: Zanussi, Tom
> >Cc: Hart, Darren; yocto@yoctoproject.org
> >Subject: Re: [yocto] [PATCH 0/1] Fix X issue on crownbay
> >
> >FYI While testing on the fishriver platform, I also find that there is
> >no X log, and looking further found out that xorg executable is not on
> >the image. I think the same thing is also happening on crownbay.
> 
> FYI.. I also see the similar issue for Romley.
> There is no Xlog and X does not comes up.
> 
> Thanks
> Kishore.
> 
> >
> >Nitin
> >
> >
> >
> >> -----Original Message-----
> >> From: Kamble, Nitin A
> >> Sent: Wednesday, September 12, 2012 9:18 AM
> >> To: Zanussi, Tom
> >> Cc: Hart, Darren; yocto@yoctoproject.org
> >> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
> >>
> >> Hi Tom,
> >>   Thanks for looking into the matter. I will try to reproduce the
> >> issue you are seeing with master. And send another pull request with all
> the fixes.
> >>
> >> Regards,
> >> Nitin
> >>
> >>
> >> > -----Original Message-----
> >> > From: Zanussi, Tom
> >> > Sent: Monday, September 10, 2012 4:34 PM
> >> > To: Kamble, Nitin A
> >> > Cc: Hart, Darren; yocto@yoctoproject.org
> >> > Subject: Re: [PATCH 0/1] Fix X issue on crownbay
> >> >
> >> > On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
> >> > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
> >> > >
> >> > > The following changes since commit
> >> > 66b516f3d3a287eecbf8804b2221bfc27e36db63:
> >> > >
> >> > >   README: add info explaining meta-tlk layer purpose (2012-09-06
> >> > > 10:36:02 -0500)
> >> > >
> >> > > are available in the git repository at:
> >> > >   git://git.yoctoproject.org/meta-intel-contrib nitin/work
> >> > >
> >> > > http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=ni
> >> > > tin
> >> > > /w
> >> > > ork
> >> > >
> >> >
> >> > I built and tried this, but it still didn't boot into X, and now
> >> > there's not even an Xorg.log to look at:
> >> >
> >> > root@crownbay:/var/log# ls -al
> >> > drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
> >> > drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
> >> > -rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
> >> > -rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp
> >> >
> >> > I assume this is a different X problem related to recent changes in
> mater.
> >> > Can you update the bug report with the commits that you tested with
> >> > so I can verify that your patch at least works?
> >> >
> >> > Thanks,
> >> >
> >> > Tom
> >> >
> >> >
> >> >
> >> > > Nitin A Kamble (1):
> >> > >   emgd-driver-bin: Fix package naming issue
> >> > >
> >> > >  .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
> >> > >  1 files changed, 7 insertions(+), 1 deletions(-)
> >> > >
> >> >
> >
> >_______________________________________________
> >yocto mailing list
> >yocto@yoctoproject.org
> >https://lists.yoctoproject.org/listinfo/yocto


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-13 19:57       ` Kamble, Nitin A
@ 2012-09-19  2:35         ` Bodke, Kishore K
  2012-09-19  4:02           ` Saul Wold
  0 siblings, 1 reply; 13+ messages in thread
From: Bodke, Kishore K @ 2012-09-19  2:35 UTC (permalink / raw)
  To: Kamble, Nitin A, Zanussi, Tom; +Cc: Hart, Darren, yocto@yoctoproject.org



>-----Original Message-----
>From: Kamble, Nitin A
>Sent: Thursday, September 13, 2012 12:58 PM
>To: Bodke, Kishore K; Zanussi, Tom
>Cc: Hart, Darren; yocto@yoctoproject.org
>Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>
>Thanks Kishore for reporting it. I am trying to get to bottom of this by today or
>tomorrow.

Hi Nitin,

I still cannot see the X with the latest poky/master and meta-intel/master for Romley.
No /usr/bin/Xorg and /usr/bin/X .

Thanks
Kishore.

>
>Thanks,
>Nitin
>
>
>> -----Original Message-----
>> From: Bodke, Kishore K
>> Sent: Wednesday, September 12, 2012 1:57 PM
>> To: Kamble, Nitin A; Zanussi, Tom
>> Cc: Hart, Darren; yocto@yoctoproject.org
>> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>>
>>
>>
>> >-----Original Message-----
>> >From: yocto-bounces@yoctoproject.org [mailto:yocto-
>> >bounces@yoctoproject.org] On Behalf Of Kamble, Nitin A
>> >Sent: Wednesday, September 12, 2012 1:14 PM
>> >To: Zanussi, Tom
>> >Cc: Hart, Darren; yocto@yoctoproject.org
>> >Subject: Re: [yocto] [PATCH 0/1] Fix X issue on crownbay
>> >
>> >FYI While testing on the fishriver platform, I also find that there is
>> >no X log, and looking further found out that xorg executable is not on
>> >the image. I think the same thing is also happening on crownbay.
>>
>> FYI.. I also see the similar issue for Romley.
>> There is no Xlog and X does not comes up.
>>
>> Thanks
>> Kishore.
>>
>> >
>> >Nitin
>> >
>> >
>> >
>> >> -----Original Message-----
>> >> From: Kamble, Nitin A
>> >> Sent: Wednesday, September 12, 2012 9:18 AM
>> >> To: Zanussi, Tom
>> >> Cc: Hart, Darren; yocto@yoctoproject.org
>> >> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>> >>
>> >> Hi Tom,
>> >>   Thanks for looking into the matter. I will try to reproduce the
>> >> issue you are seeing with master. And send another pull request with all
>> the fixes.
>> >>
>> >> Regards,
>> >> Nitin
>> >>
>> >>
>> >> > -----Original Message-----
>> >> > From: Zanussi, Tom
>> >> > Sent: Monday, September 10, 2012 4:34 PM
>> >> > To: Kamble, Nitin A
>> >> > Cc: Hart, Darren; yocto@yoctoproject.org
>> >> > Subject: Re: [PATCH 0/1] Fix X issue on crownbay
>> >> >
>> >> > On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
>> >> > > From: Nitin A Kamble <nitin.a.kamble@intel.com>
>> >> > >
>> >> > > The following changes since commit
>> >> > 66b516f3d3a287eecbf8804b2221bfc27e36db63:
>> >> > >
>> >> > >   README: add info explaining meta-tlk layer purpose (2012-09-06
>> >> > > 10:36:02 -0500)
>> >> > >
>> >> > > are available in the git repository at:
>> >> > >   git://git.yoctoproject.org/meta-intel-contrib nitin/work
>> >> > >
>> >> > > http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=ni
>> >> > > tin
>> >> > > /w
>> >> > > ork
>> >> > >
>> >> >
>> >> > I built and tried this, but it still didn't boot into X, and now
>> >> > there's not even an Xorg.log to look at:
>> >> >
>> >> > root@crownbay:/var/log# ls -al
>> >> > drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
>> >> > drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
>> >> > -rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
>> >> > -rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp
>> >> >
>> >> > I assume this is a different X problem related to recent changes in
>> mater.
>> >> > Can you update the bug report with the commits that you tested with
>> >> > so I can verify that your patch at least works?
>> >> >
>> >> > Thanks,
>> >> >
>> >> > Tom
>> >> >
>> >> >
>> >> >
>> >> > > Nitin A Kamble (1):
>> >> > >   emgd-driver-bin: Fix package naming issue
>> >> > >
>> >> > >  .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
>> >> > >  1 files changed, 7 insertions(+), 1 deletions(-)
>> >> > >
>> >> >
>> >
>> >_______________________________________________
>> >yocto mailing list
>> >yocto@yoctoproject.org
>> >https://lists.yoctoproject.org/listinfo/yocto


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

* Re: [PATCH 0/1] Fix X issue on crownbay
  2012-09-19  2:35         ` Bodke, Kishore K
@ 2012-09-19  4:02           ` Saul Wold
  0 siblings, 0 replies; 13+ messages in thread
From: Saul Wold @ 2012-09-19  4:02 UTC (permalink / raw)
  To: Bodke, Kishore K; +Cc: yocto@yoctoproject.org, Hart, Darren

On 09/18/2012 07:35 PM, Bodke, Kishore K wrote:
>
>
>> -----Original Message-----
>> From: Kamble, Nitin A
>> Sent: Thursday, September 13, 2012 12:58 PM
>> To: Bodke, Kishore K; Zanussi, Tom
>> Cc: Hart, Darren; yocto@yoctoproject.org
>> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>>
>> Thanks Kishore for reporting it. I am trying to get to bottom of this by today or
>> tomorrow.
>
> Hi Nitin,
>
> I still cannot see the X with the latest poky/master and meta-intel/master for Romley.
> No /usr/bin/Xorg and /usr/bin/X .
>

The patch is pending on stage/master_under_test, it's changes an 
RPROVIDES to an RCONFLICTS.

Sau!

> Thanks
> Kishore.
>
>>
>> Thanks,
>> Nitin
>>
>>
>>> -----Original Message-----
>>> From: Bodke, Kishore K
>>> Sent: Wednesday, September 12, 2012 1:57 PM
>>> To: Kamble, Nitin A; Zanussi, Tom
>>> Cc: Hart, Darren; yocto@yoctoproject.org
>>> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>>>
>>>
>>>
>>>> -----Original Message-----
>>>> From: yocto-bounces@yoctoproject.org [mailto:yocto-
>>>> bounces@yoctoproject.org] On Behalf Of Kamble, Nitin A
>>>> Sent: Wednesday, September 12, 2012 1:14 PM
>>>> To: Zanussi, Tom
>>>> Cc: Hart, Darren; yocto@yoctoproject.org
>>>> Subject: Re: [yocto] [PATCH 0/1] Fix X issue on crownbay
>>>>
>>>> FYI While testing on the fishriver platform, I also find that there is
>>>> no X log, and looking further found out that xorg executable is not on
>>>> the image. I think the same thing is also happening on crownbay.
>>>
>>> FYI.. I also see the similar issue for Romley.
>>> There is no Xlog and X does not comes up.
>>>
>>> Thanks
>>> Kishore.
>>>
>>>>
>>>> Nitin
>>>>
>>>>
>>>>
>>>>> -----Original Message-----
>>>>> From: Kamble, Nitin A
>>>>> Sent: Wednesday, September 12, 2012 9:18 AM
>>>>> To: Zanussi, Tom
>>>>> Cc: Hart, Darren; yocto@yoctoproject.org
>>>>> Subject: RE: [PATCH 0/1] Fix X issue on crownbay
>>>>>
>>>>> Hi Tom,
>>>>>    Thanks for looking into the matter. I will try to reproduce the
>>>>> issue you are seeing with master. And send another pull request with all
>>> the fixes.
>>>>>
>>>>> Regards,
>>>>> Nitin
>>>>>
>>>>>
>>>>>> -----Original Message-----
>>>>>> From: Zanussi, Tom
>>>>>> Sent: Monday, September 10, 2012 4:34 PM
>>>>>> To: Kamble, Nitin A
>>>>>> Cc: Hart, Darren; yocto@yoctoproject.org
>>>>>> Subject: Re: [PATCH 0/1] Fix X issue on crownbay
>>>>>>
>>>>>> On Wed, 2012-09-05 at 17:59 -0700, nitin.a.kamble@intel.com wrote:
>>>>>>> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>>>>>>>
>>>>>>> The following changes since commit
>>>>>> 66b516f3d3a287eecbf8804b2221bfc27e36db63:
>>>>>>>
>>>>>>>    README: add info explaining meta-tlk layer purpose (2012-09-06
>>>>>>> 10:36:02 -0500)
>>>>>>>
>>>>>>> are available in the git repository at:
>>>>>>>    git://git.yoctoproject.org/meta-intel-contrib nitin/work
>>>>>>>
>>>>>>> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=ni
>>>>>>> tin
>>>>>>> /w
>>>>>>> ork
>>>>>>>
>>>>>>
>>>>>> I built and tried this, but it still didn't boot into X, and now
>>>>>> there's not even an Xorg.log to look at:
>>>>>>
>>>>>> root@crownbay:/var/log# ls -al
>>>>>> drwxr-xr-x    2 root     root            80 Sep 10 20:15 .
>>>>>> drwxrwxrwt    7 root     root           140 Jan  6  2009 ..
>>>>>> -rw-r--r--    1 root     root         78429 Sep 10 20:17 messages
>>>>>> -rw-rw-r--    1 root     root          4224 Sep 10 20:17 wtmp
>>>>>>
>>>>>> I assume this is a different X problem related to recent changes in
>>> mater.
>>>>>> Can you update the bug report with the commits that you tested with
>>>>>> so I can verify that your patch at least works?
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> Tom
>>>>>>
>>>>>>
>>>>>>
>>>>>>> Nitin A Kamble (1):
>>>>>>>    emgd-driver-bin: Fix package naming issue
>>>>>>>
>>>>>>>   .../xorg-xserver/emgd-driver-bin_1.14.bb           |    8 +++++++-
>>>>>>>   1 files changed, 7 insertions(+), 1 deletions(-)
>>>>>>>
>>>>>>
>>>>
>>>> _______________________________________________
>>>> yocto mailing list
>>>> yocto@yoctoproject.org
>>>> https://lists.yoctoproject.org/listinfo/yocto
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
>


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

end of thread, other threads:[~2012-09-19  4:03 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-06  0:59 [PATCH 0/1] Fix X issue on crownbay nitin.a.kamble
2012-09-06  0:59 ` [PATCH 1/1] emgd-driver-bin: Fix package naming issue nitin.a.kamble
2012-09-07  9:29   ` Burton, Ross
2012-09-07 17:32     ` Kamble, Nitin A
2012-09-10 23:34 ` [PATCH 0/1] Fix X issue on crownbay Tom Zanussi
2012-09-12 16:18   ` Kamble, Nitin A
2012-09-12 20:14   ` Kamble, Nitin A
2012-09-12 20:43     ` Burton, Ross
2012-09-13 19:56       ` Kamble, Nitin A
2012-09-12 20:57     ` Bodke, Kishore K
2012-09-13 19:57       ` Kamble, Nitin A
2012-09-19  2:35         ` Bodke, Kishore K
2012-09-19  4:02           ` Saul Wold

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.