All of lore.kernel.org
 help / color / mirror / Atom feed
* [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
@ 2018-09-13  9:35 Belal, Awais
  2018-09-14  7:18 ` Reyna, David
  0 siblings, 1 reply; 11+ messages in thread
From: Belal, Awais @ 2018-09-13  9:35 UTC (permalink / raw)
  To: bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 1868 bytes --]

From b736703a9d3f3c33e2e83ecd5e61dbddd5793cc8 Mon Sep 17 00:00:00 2001
From: Awais Belal <awais_belal@mentor.com>
Date: Thu, 13 Sep 2018 14:12:18 +0500
Subject: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution


15340edce23e63b060c75114d508e1f76757239c introduced a way which
allowed bitbake to be found from the PATH variable when directory
structures different from poky are used. This just drops a leftover
which made the earlier implementation meaningless by reassigning
the path relative to oe-core/meta.


Signed-off-by: Awais Belal <awais_belal@mentor.com>
---
 lib/toaster/bldcontrol/localhostbecontroller.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py
index 3850334..63b4187 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -360,12 +360,12 @@ class LocalhostBEController(BuildEnvironmentController):
             for path in os.environ["PATH"].split(os.pathsep):
                 if os.path.exists(os.path.join(path, 'bitbake')):
                     bitbake = os.path.join(path, 'bitbake')
+                    logger.info("Found Bitbake at: %s" % path)
                     break
             else:
                 logger.error("Looks like Bitbake is not available, please fix your environment")

         # run bitbake server from the clone
-        bitbake = os.path.join(self.pokydirname, 'bitbake', 'bin', 'bitbake')
         toasterlayers = os.path.join(builddir,"conf/toaster-bblayers.conf")
         self._shellcmd('%s bash -c \"source %s %s; BITBAKE_UI="knotty" %s --read %s --read %s '
                        '--server-only -B 0.0.0.0:0\"' % (env_clean, oe_init,
--
2.7.4



BR,
Awais

[-- Attachment #2: Type: text/html, Size: 3735 bytes --]

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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-13  9:35 [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution Belal, Awais
@ 2018-09-14  7:18 ` Reyna, David
  2018-09-20  7:59   ` Belal, Awais
  0 siblings, 1 reply; 11+ messages in thread
From: Reyna, David @ 2018-09-14  7:18 UTC (permalink / raw)
  To: Belal, Awais, bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 2362 bytes --]

Hi all,

I recommend this for both Sumo and for master as well, so that they stay in sync.

The cherry-pick should be clean between the two branches.

- David

From: bitbake-devel-bounces@lists.openembedded.org [mailto:bitbake-devel-bounces@lists.openembedded.org] On Behalf Of Belal, Awais
Sent: Thursday, September 13, 2018 2:36 AM
To: bitbake-devel@lists.openembedded.org
Subject: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution


From b736703a9d3f3c33e2e83ecd5e61dbddd5793cc8 Mon Sep 17 00:00:00 2001
From: Awais Belal <awais_belal@mentor.com>
Date: Thu, 13 Sep 2018 14:12:18 +0500
Subject: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution



15340edce23e63b060c75114d508e1f76757239c introduced a way which
allowed bitbake to be found from the PATH variable when directory
structures different from poky are used. This just drops a leftover
which made the earlier implementation meaningless by reassigning
the path relative to oe-core/meta.



Signed-off-by: Awais Belal <awais_belal@mentor.com>
---
 lib/toaster/bldcontrol/localhostbecontroller.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py
index 3850334..63b4187 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -360,12 +360,12 @@ class LocalhostBEController(BuildEnvironmentController):
             for path in os.environ["PATH"].split(os.pathsep):
                 if os.path.exists(os.path.join(path, 'bitbake')):
                     bitbake = os.path.join(path, 'bitbake')
+                    logger.info("Found Bitbake at: %s" % path)
                     break
             else:
                 logger.error("Looks like Bitbake is not available, please fix your environment")

         # run bitbake server from the clone
-        bitbake = os.path.join(self.pokydirname, 'bitbake', 'bin', 'bitbake')
         toasterlayers = os.path.join(builddir,"conf/toaster-bblayers.conf")
         self._shellcmd('%s bash -c \"source %s %s; BITBAKE_UI="knotty" %s --read %s --read %s '
                        '--server-only -B 0.0.0.0:0\"' % (env_clean, oe_init,
--
2.7.4


BR,
Awais

[-- Attachment #2: Type: text/html, Size: 8270 bytes --]

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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-14  7:18 ` Reyna, David
@ 2018-09-20  7:59   ` Belal, Awais
  2018-09-27  7:54     ` Belal, Awais
  0 siblings, 1 reply; 11+ messages in thread
From: Belal, Awais @ 2018-09-20  7:59 UTC (permalink / raw)
  To: Reyna, David, bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 2706 bytes --]

ping!


BR,
Awais
________________________________
From: Reyna, David <david.reyna@windriver.com>
Sent: Friday, September 14, 2018 12:18 PM
To: Belal, Awais; bitbake-devel@lists.openembedded.org
Cc: akuster (akuster@mvista.com)
Subject: RE: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution

Hi all,

I recommend this for both Sumo and for master as well, so that they stay in sync.

The cherry-pick should be clean between the two branches.

- David

From: bitbake-devel-bounces@lists.openembedded.org [mailto:bitbake-devel-bounces@lists.openembedded.org] On Behalf Of Belal, Awais
Sent: Thursday, September 13, 2018 2:36 AM
To: bitbake-devel@lists.openembedded.org
Subject: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution


From b736703a9d3f3c33e2e83ecd5e61dbddd5793cc8 Mon Sep 17 00:00:00 2001
From: Awais Belal <awais_belal@mentor.com>
Date: Thu, 13 Sep 2018 14:12:18 +0500
Subject: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution



15340edce23e63b060c75114d508e1f76757239c introduced a way which
allowed bitbake to be found from the PATH variable when directory
structures different from poky are used. This just drops a leftover
which made the earlier implementation meaningless by reassigning
the path relative to oe-core/meta.



Signed-off-by: Awais Belal <awais_belal@mentor.com>
---
 lib/toaster/bldcontrol/localhostbecontroller.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py
index 3850334..63b4187 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -360,12 +360,12 @@ class LocalhostBEController(BuildEnvironmentController):
             for path in os.environ["PATH"].split(os.pathsep):
                 if os.path.exists(os.path.join(path, 'bitbake')):
                     bitbake = os.path.join(path, 'bitbake')
+                    logger.info("Found Bitbake at: %s" % path)
                     break
             else:
                 logger.error("Looks like Bitbake is not available, please fix your environment")

         # run bitbake server from the clone
-        bitbake = os.path.join(self.pokydirname, 'bitbake', 'bin', 'bitbake')
         toasterlayers = os.path.join(builddir,"conf/toaster-bblayers.conf")
         self._shellcmd('%s bash -c \"source %s %s; BITBAKE_UI="knotty" %s --read %s --read %s '
                        '--server-only -B 0.0.0.0:0\"' % (env_clean, oe_init,
--
2.7.4


BR,
Awais

[-- Attachment #2: Type: text/html, Size: 8254 bytes --]

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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-20  7:59   ` Belal, Awais
@ 2018-09-27  7:54     ` Belal, Awais
  2018-09-27 16:53       ` Richard Purdie
  0 siblings, 1 reply; 11+ messages in thread
From: Belal, Awais @ 2018-09-27  7:54 UTC (permalink / raw)
  To: Reyna, David, bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 3200 bytes --]

>> I recommend this for both Sumo and for master as well, so that they stay in sync.

Any thoughts here?



BR,
Awais
________________________________
From: bitbake-devel-bounces@lists.openembedded.org <bitbake-devel-bounces@lists.openembedded.org> on behalf of Belal, Awais
Sent: Thursday, September 20, 2018 12:59 PM
To: Reyna, David; bitbake-devel@lists.openembedded.org
Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution


ping!


BR,
Awais
________________________________
From: Reyna, David <david.reyna@windriver.com>
Sent: Friday, September 14, 2018 12:18 PM
To: Belal, Awais; bitbake-devel@lists.openembedded.org
Cc: akuster (akuster@mvista.com)
Subject: RE: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution

Hi all,

I recommend this for both Sumo and for master as well, so that they stay in sync.

The cherry-pick should be clean between the two branches.

- David

From: bitbake-devel-bounces@lists.openembedded.org [mailto:bitbake-devel-bounces@lists.openembedded.org] On Behalf Of Belal, Awais
Sent: Thursday, September 13, 2018 2:36 AM
To: bitbake-devel@lists.openembedded.org
Subject: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution


From b736703a9d3f3c33e2e83ecd5e61dbddd5793cc8 Mon Sep 17 00:00:00 2001
From: Awais Belal <awais_belal@mentor.com>
Date: Thu, 13 Sep 2018 14:12:18 +0500
Subject: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution



15340edce23e63b060c75114d508e1f76757239c introduced a way which
allowed bitbake to be found from the PATH variable when directory
structures different from poky are used. This just drops a leftover
which made the earlier implementation meaningless by reassigning
the path relative to oe-core/meta.



Signed-off-by: Awais Belal <awais_belal@mentor.com>
---
 lib/toaster/bldcontrol/localhostbecontroller.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py
index 3850334..63b4187 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -360,12 +360,12 @@ class LocalhostBEController(BuildEnvironmentController):
             for path in os.environ["PATH"].split(os.pathsep):
                 if os.path.exists(os.path.join(path, 'bitbake')):
                     bitbake = os.path.join(path, 'bitbake')
+                    logger.info("Found Bitbake at: %s" % path)
                     break
             else:
                 logger.error("Looks like Bitbake is not available, please fix your environment")

         # run bitbake server from the clone
-        bitbake = os.path.join(self.pokydirname, 'bitbake', 'bin', 'bitbake')
         toasterlayers = os.path.join(builddir,"conf/toaster-bblayers.conf")
         self._shellcmd('%s bash -c \"source %s %s; BITBAKE_UI="knotty" %s --read %s --read %s '
                        '--server-only -B 0.0.0.0:0\"' % (env_clean, oe_init,
--
2.7.4


BR,
Awais

[-- Attachment #2: Type: text/html, Size: 9598 bytes --]

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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-27  7:54     ` Belal, Awais
@ 2018-09-27 16:53       ` Richard Purdie
  2018-09-28  7:37         ` Belal, Awais
  0 siblings, 1 reply; 11+ messages in thread
From: Richard Purdie @ 2018-09-27 16:53 UTC (permalink / raw)
  To: Belal, Awais, Reyna, David, bitbake-devel

On Thu, 2018-09-27 at 07:54 +0000, Belal, Awais wrote:
> >> I recommend this for both Sumo and for master as well, so that
> they stay in sync.
> Any thoughts here?

I'm confused. Does master need the patch? or only sumo?

Cheers,

Richard


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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-27 16:53       ` Richard Purdie
@ 2018-09-28  7:37         ` Belal, Awais
  2018-09-28  7:52           ` richard.purdie
  0 siblings, 1 reply; 11+ messages in thread
From: Belal, Awais @ 2018-09-28  7:37 UTC (permalink / raw)
  To: Richard Purdie, Reyna, David, bitbake-devel

>> I'm confused. Does master need the patch? or only sumo?
Both.

BR,
Awais

________________________________________
From: Richard Purdie <richard.purdie@linuxfoundation.org>
Sent: Thursday, September 27, 2018 9:53 PM
To: Belal, Awais; Reyna, David; bitbake-devel@lists.openembedded.org
Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution

On Thu, 2018-09-27 at 07:54 +0000, Belal, Awais wrote:
> >> I recommend this for both Sumo and for master as well, so that
> they stay in sync.
> Any thoughts here?

I'm confused. Does master need the patch? or only sumo?

Cheers,

Richard


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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-28  7:37         ` Belal, Awais
@ 2018-09-28  7:52           ` richard.purdie
  2018-09-28 10:38             ` Belal, Awais
  0 siblings, 1 reply; 11+ messages in thread
From: richard.purdie @ 2018-09-28  7:52 UTC (permalink / raw)
  To: Belal, Awais, Reyna, David, bitbake-devel

On Fri, 2018-09-28 at 07:37 +0000, Belal, Awais wrote:
> > > I'm confused. Does master need the patch? or only sumo?
> 
> Both.

The patch doesn't apply to master so could you send a version which
applies there please? 

I can then apply the sumo one at the same time which does presumably
apply to sumo (I've not tried that as yet).

Thanks,

Richard


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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-28  7:52           ` richard.purdie
@ 2018-09-28 10:38             ` Belal, Awais
  2018-09-28 16:08               ` akuster808
  0 siblings, 1 reply; 11+ messages in thread
From: Belal, Awais @ 2018-09-28 10:38 UTC (permalink / raw)
  To: richard.purdie, Reyna, David, bitbake-devel

>> The patch doesn't apply to master so could you send a version which
>> applies there please?

>> I can then apply the sumo one at the same time which does presumably
>> apply to sumo (I've not tried that as yet).

Extremely sorry, this is only needed for sumo (1.38), master doesn't have this problem.


BR,
Awais

________________________________________
From: richard.purdie@linuxfoundation.org <richard.purdie@linuxfoundation.org>
Sent: Friday, September 28, 2018 12:52 PM
To: Belal, Awais; Reyna, David; bitbake-devel@lists.openembedded.org
Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution

On Fri, 2018-09-28 at 07:37 +0000, Belal, Awais wrote:
> > > I'm confused. Does master need the patch? or only sumo?
>
> Both.

The patch doesn't apply to master so could you send a version which
applies there please?

I can then apply the sumo one at the same time which does presumably
apply to sumo (I've not tried that as yet).

Thanks,

Richard


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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-28 10:38             ` Belal, Awais
@ 2018-09-28 16:08               ` akuster808
  2018-09-30  7:06                 ` Reyna, David
  0 siblings, 1 reply; 11+ messages in thread
From: akuster808 @ 2018-09-28 16:08 UTC (permalink / raw)
  To: Belal, Awais, richard.purdie, Reyna, David, bitbake-devel



On 09/28/2018 03:38 AM, Belal, Awais wrote:
>>> The patch doesn't apply to master so could you send a version which
>>> applies there please?
>>> I can then apply the sumo one at the same time which does presumably
>>> apply to sumo (I've not tried that as yet).
> Extremely sorry, this is only needed for sumo (1.38), master doesn't have this problem.

This does not apply to sumo either. We have the commit it depends on:

c1f5ec8 bitbake: toaster: use a more flexible way to find bitbake

- armin

>
>
>
> BR,
> Awais
>
> ________________________________________
> From: richard.purdie@linuxfoundation.org <richard.purdie@linuxfoundation.org>
> Sent: Friday, September 28, 2018 12:52 PM
> To: Belal, Awais; Reyna, David; bitbake-devel@lists.openembedded.org
> Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
>
> On Fri, 2018-09-28 at 07:37 +0000, Belal, Awais wrote:
>>>> I'm confused. Does master need the patch? or only sumo?
>> Both.
> The patch doesn't apply to master so could you send a version which
> applies there please?
>
> I can then apply the sumo one at the same time which does presumably
> apply to sumo (I've not tried that as yet).
>
> Thanks,
>
> Richard



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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-28 16:08               ` akuster808
@ 2018-09-30  7:06                 ` Reyna, David
  2018-09-30  7:40                   ` Reyna, David
  0 siblings, 1 reply; 11+ messages in thread
From: Reyna, David @ 2018-09-30  7:06 UTC (permalink / raw)
  To: akuster808, Belal, Awais, richard.purdie; +Cc: bitbake-devel

Hi all,

I created my own version of Awais's patch from my Sumo branch. The only difference was that I based by patch from the "bitbake" directory (Awais did it from the bitbake/lib" directory), plus I got an extra blank line at the end.

I am going to submit my version of the patch in a few minutes. It should look identical to the original from Awais, except for the above observations.

- David

-----Original Message-----
From: akuster808 [mailto:akuster808@gmail.com] 
Sent: Friday, September 28, 2018 9:09 AM
To: Belal, Awais; richard.purdie@linuxfoundation.org; Reyna, David; bitbake-devel@lists.openembedded.org
Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution



On 09/28/2018 03:38 AM, Belal, Awais wrote:
>>> The patch doesn't apply to master so could you send a version which
>>> applies there please?
>>> I can then apply the sumo one at the same time which does presumably
>>> apply to sumo (I've not tried that as yet).
> Extremely sorry, this is only needed for sumo (1.38), master doesn't have this problem.

This does not apply to sumo either. We have the commit it depends on:

c1f5ec8 bitbake: toaster: use a more flexible way to find bitbake

- armin

>
>
>
> BR,
> Awais
>
> ________________________________________
> From: richard.purdie@linuxfoundation.org <richard.purdie@linuxfoundation.org>
> Sent: Friday, September 28, 2018 12:52 PM
> To: Belal, Awais; Reyna, David; bitbake-devel@lists.openembedded.org
> Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
>
> On Fri, 2018-09-28 at 07:37 +0000, Belal, Awais wrote:
>>>> I'm confused. Does master need the patch? or only sumo?
>> Both.
> The patch doesn't apply to master so could you send a version which
> applies there please?
>
> I can then apply the sumo one at the same time which does presumably
> apply to sumo (I've not tried that as yet).
>
> Thanks,
>
> Richard


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

* Re: [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
  2018-09-30  7:06                 ` Reyna, David
@ 2018-09-30  7:40                   ` Reyna, David
  0 siblings, 0 replies; 11+ messages in thread
From: Reyna, David @ 2018-09-30  7:40 UTC (permalink / raw)
  To: akuster808, Belal, Awais, richard.purdie; +Cc: bitbake-devel

Hi again,

I have submitted the patch. The patch itself looks the same to me, however I did use the official "create-pull-request" on top of the latest pull, so maybe it will have a happier apply. I also took advantage of this submission by adding a formal Bugzilla case number into the commit text.

- David

-----Original Message-----
From: bitbake-devel-bounces@lists.openembedded.org [mailto:bitbake-devel-bounces@lists.openembedded.org] On Behalf Of Reyna, David
Sent: Sunday, September 30, 2018 12:07 AM
To: akuster808; Belal, Awais; richard.purdie@linuxfoundation.org
Cc: bitbake-devel@lists.openembedded.org
Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution

Hi all,

I created my own version of Awais's patch from my Sumo branch. The only difference was that I based by patch from the "bitbake" directory (Awais did it from the bitbake/lib" directory), plus I got an extra blank line at the end.

I am going to submit my version of the patch in a few minutes. It should look identical to the original from Awais, except for the above observations.

- David

-----Original Message-----
From: akuster808 [mailto:akuster808@gmail.com] 
Sent: Friday, September 28, 2018 9:09 AM
To: Belal, Awais; richard.purdie@linuxfoundation.org; Reyna, David; bitbake-devel@lists.openembedded.org
Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution



On 09/28/2018 03:38 AM, Belal, Awais wrote:
>>> The patch doesn't apply to master so could you send a version which
>>> applies there please?
>>> I can then apply the sumo one at the same time which does presumably
>>> apply to sumo (I've not tried that as yet).
> Extremely sorry, this is only needed for sumo (1.38), master doesn't have this problem.

This does not apply to sumo either. We have the commit it depends on:

c1f5ec8 bitbake: toaster: use a more flexible way to find bitbake

- armin

>
>
>
> BR,
> Awais
>
> ________________________________________
> From: richard.purdie@linuxfoundation.org <richard.purdie@linuxfoundation.org>
> Sent: Friday, September 28, 2018 12:52 PM
> To: Belal, Awais; Reyna, David; bitbake-devel@lists.openembedded.org
> Subject: Re: [bitbake-devel] [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution
>
> On Fri, 2018-09-28 at 07:37 +0000, Belal, Awais wrote:
>>>> I'm confused. Does master need the patch? or only sumo?
>> Both.
> The patch doesn't apply to master so could you send a version which
> applies there please?
>
> I can then apply the sumo one at the same time which does presumably
> apply to sumo (I've not tried that as yet).
>
> Thanks,
>
> Richard

-- 
_______________________________________________
bitbake-devel mailing list
bitbake-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/bitbake-devel


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

end of thread, other threads:[~2018-09-30  7:41 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-13  9:35 [sumo][PATCH] toaster: localhostbecontroller: fix bitbake path resolution Belal, Awais
2018-09-14  7:18 ` Reyna, David
2018-09-20  7:59   ` Belal, Awais
2018-09-27  7:54     ` Belal, Awais
2018-09-27 16:53       ` Richard Purdie
2018-09-28  7:37         ` Belal, Awais
2018-09-28  7:52           ` richard.purdie
2018-09-28 10:38             ` Belal, Awais
2018-09-28 16:08               ` akuster808
2018-09-30  7:06                 ` Reyna, David
2018-09-30  7:40                   ` Reyna, David

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.