All of lore.kernel.org
 help / color / mirror / Atom feed
* [tisdk-build-scripts][PATCH] bitbake-test-sdk-image: use tmp/deploy/images/machine/ structure
@ 2014-04-11 20:10 Denys Dmytriyenko
  2014-04-14 16:36 ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-04-11 20:10 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

From Dora and up, images are deployed into corresponding machine subdirs.

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 lib/oesdk/bitbake-test-sdk-image |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/oesdk/bitbake-test-sdk-image b/lib/oesdk/bitbake-test-sdk-image
index 8df9a5b..cff86e4 100644
--- a/lib/oesdk/bitbake-test-sdk-image
+++ b/lib/oesdk/bitbake-test-sdk-image
@@ -125,6 +125,12 @@ extract_sdk_image() {
         return 1
     fi
 
+    # prefer sdk_path/m, if exists - Dora and up
+    if [ -d $sdk_path/$m ]
+    then
+        sdk_path="$sdk_path/$m"
+    fi
+
 ################################################################################
 # SDK_FILTER variable is used to specify the SDK image produced by the build,
 # that includes bootloaders, kernel, rootfs, devkit and host tools.
-- 
1.7.9.5



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

* Re: [tisdk-build-scripts][PATCH] bitbake-test-sdk-image: use tmp/deploy/images/machine/ structure
  2014-04-11 20:10 [tisdk-build-scripts][PATCH] bitbake-test-sdk-image: use tmp/deploy/images/machine/ structure Denys Dmytriyenko
@ 2014-04-14 16:36 ` Denys Dmytriyenko
  2014-04-14 18:41   ` Maupin, Chase
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-04-14 16:36 UTC (permalink / raw)
  To: meta-arago

Any comments?

On Fri, Apr 11, 2014 at 04:10:19PM -0400, Denys Dmytriyenko wrote:
> From: Denys Dmytriyenko <denys@ti.com>
> 
> From Dora and up, images are deployed into corresponding machine subdirs.
> 
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
>  lib/oesdk/bitbake-test-sdk-image |    6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/lib/oesdk/bitbake-test-sdk-image b/lib/oesdk/bitbake-test-sdk-image
> index 8df9a5b..cff86e4 100644
> --- a/lib/oesdk/bitbake-test-sdk-image
> +++ b/lib/oesdk/bitbake-test-sdk-image
> @@ -125,6 +125,12 @@ extract_sdk_image() {
>          return 1
>      fi
>  
> +    # prefer sdk_path/m, if exists - Dora and up
> +    if [ -d $sdk_path/$m ]
> +    then
> +        sdk_path="$sdk_path/$m"
> +    fi
> +
>  ################################################################################
>  # SDK_FILTER variable is used to specify the SDK image produced by the build,
>  # that includes bootloaders, kernel, rootfs, devkit and host tools.
> -- 
> 1.7.9.5
> 


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

* Re: [tisdk-build-scripts][PATCH] bitbake-test-sdk-image: use tmp/deploy/images/machine/ structure
  2014-04-14 16:36 ` Denys Dmytriyenko
@ 2014-04-14 18:41   ` Maupin, Chase
  2014-04-15 15:40     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 4+ messages in thread
From: Maupin, Chase @ 2014-04-14 18:41 UTC (permalink / raw)
  To: Dmytriyenko, Denys, meta-arago@arago-project.org

Ack

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Dmytriyenko, Denys
>Sent: Monday, April 14, 2014 11:36 AM
>To: meta-arago@arago-project.org
>Subject: Re: [meta-arago] [tisdk-build-scripts][PATCH] bitbake-
>test-sdk-image: use tmp/deploy/images/machine/ structure
>
>Any comments?
>
>On Fri, Apr 11, 2014 at 04:10:19PM -0400, Denys Dmytriyenko wrote:
>> From: Denys Dmytriyenko <denys@ti.com>
>>
>> From Dora and up, images are deployed into corresponding machine
>subdirs.
>>
>> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>> ---
>>  lib/oesdk/bitbake-test-sdk-image |    6 ++++++
>>  1 file changed, 6 insertions(+)
>>
>> diff --git a/lib/oesdk/bitbake-test-sdk-image
>b/lib/oesdk/bitbake-test-sdk-image
>> index 8df9a5b..cff86e4 100644
>> --- a/lib/oesdk/bitbake-test-sdk-image
>> +++ b/lib/oesdk/bitbake-test-sdk-image
>> @@ -125,6 +125,12 @@ extract_sdk_image() {
>>          return 1
>>      fi
>>
>> +    # prefer sdk_path/m, if exists - Dora and up
>> +    if [ -d $sdk_path/$m ]
>> +    then
>> +        sdk_path="$sdk_path/$m"
>> +    fi
>> +
>>
>##################################################################
>##############
>>  # SDK_FILTER variable is used to specify the SDK image produced
>by the build,
>>  # that includes bootloaders, kernel, rootfs, devkit and host
>tools.
>> --
>> 1.7.9.5
>>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [tisdk-build-scripts][PATCH] bitbake-test-sdk-image: use tmp/deploy/images/machine/ structure
  2014-04-14 18:41   ` Maupin, Chase
@ 2014-04-15 15:40     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 4+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-15 15:40 UTC (permalink / raw)
  To: Maupin, Chase, Dmytriyenko, Denys, meta-arago@arago-project.org

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Monday, April 14, 2014 1:41 PM
> To: Dmytriyenko, Denys; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [tisdk-build-scripts][PATCH] bitbake-test-sdk-image:
> use tmp/deploy/images/machine/ structure
> 
> Ack
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Dmytriyenko, Denys
> >Sent: Monday, April 14, 2014 11:36 AM
> >To: meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [tisdk-build-scripts][PATCH] bitbake-
> >test-sdk-image: use tmp/deploy/images/machine/ structure
> >
> >Any comments?
> >
> >On Fri, Apr 11, 2014 at 04:10:19PM -0400, Denys Dmytriyenko wrote:
> >> From: Denys Dmytriyenko <denys@ti.com>
> >>
> >> From Dora and up, images are deployed into corresponding machine
> >subdirs.
> >>
> >> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >> ---
> >>  lib/oesdk/bitbake-test-sdk-image |    6 ++++++
> >>  1 file changed, 6 insertions(+)
> >>
> >> diff --git a/lib/oesdk/bitbake-test-sdk-image
> >b/lib/oesdk/bitbake-test-sdk-image
> >> index 8df9a5b..cff86e4 100644
> >> --- a/lib/oesdk/bitbake-test-sdk-image
> >> +++ b/lib/oesdk/bitbake-test-sdk-image
> >> @@ -125,6 +125,12 @@ extract_sdk_image() {
> >>          return 1
> >>      fi
> >>
> >> +    # prefer sdk_path/m, if exists - Dora and up
> >> +    if [ -d $sdk_path/$m ]
> >> +    then
> >> +        sdk_path="$sdk_path/$m"
> >> +    fi
> >> +
> >>
> >################################################################
> ##
> >##############
> >>  # SDK_FILTER variable is used to specify the SDK image produced
> >by the build,
> >>  # that includes bootloaders, kernel, rootfs, devkit and host
> >tools.
> >> --
> >> 1.7.9.5
> >>
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2014-04-15 15:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-11 20:10 [tisdk-build-scripts][PATCH] bitbake-test-sdk-image: use tmp/deploy/images/machine/ structure Denys Dmytriyenko
2014-04-14 16:36 ` Denys Dmytriyenko
2014-04-14 18:41   ` Maupin, Chase
2014-04-15 15:40     ` Cooper Jr., Franklin

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.