All of lore.kernel.org
 help / color / mirror / Atom feed
* Slides from the Yocto Developer Day
@ 2012-11-12 10:52 Anna Dushistova
  2012-11-12 18:44 ` Jeff Osier-Mixon
  2012-11-13  7:01 ` Scott Garman
  0 siblings, 2 replies; 10+ messages in thread
From: Anna Dushistova @ 2012-11-12 10:52 UTC (permalink / raw)
  To: yocto

Hi All,

Are the slides available somewhere?

Thanks!
Anna.


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

* Re: Slides from the Yocto Developer Day
  2012-11-12 10:52 Slides from the Yocto Developer Day Anna Dushistova
@ 2012-11-12 18:44 ` Jeff Osier-Mixon
  2012-11-13  7:01 ` Scott Garman
  1 sibling, 0 replies; 10+ messages in thread
From: Jeff Osier-Mixon @ 2012-11-12 18:44 UTC (permalink / raw)
  To: Anna Dushistova; +Cc: Yocto Project

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

Hi Anna! I'm working on getting all the slides up this week. They will
appear at https://www.yoctoproject.org/tools-resources/presentations over
the next several days.


On Mon, Nov 12, 2012 at 2:52 AM, Anna Dushistova
<anna.dushistova@gmail.com>wrote:

> Hi All,
>
> Are the slides available somewhere?
>
> Thanks!
> Anna.
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>



-- 
Jeff Osier-Mixon http://jefro.net/blog
Yocto Project Community Manager @Intel http://yoctoproject.org

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

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

* Re: Slides from the Yocto Developer Day
  2012-11-12 10:52 Slides from the Yocto Developer Day Anna Dushistova
  2012-11-12 18:44 ` Jeff Osier-Mixon
@ 2012-11-13  7:01 ` Scott Garman
  2012-11-15 23:14   ` Trevor Woerner
  2013-01-30 14:41   ` Marco
  1 sibling, 2 replies; 10+ messages in thread
From: Scott Garman @ 2012-11-13  7:01 UTC (permalink / raw)
  To: yocto

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

On 11/12/2012 11:52 AM, Anna Dushistova wrote:
> Hi All,
>
> Are the slides available somewhere?
>
> Thanks!
> Anna.

Hi Anna,

Attached are the slides and lab packet I used for the intro hands-on lab 
in PDF format.

Scott

-- 
Scott Garman
Embedded Linux Engineer - Yocto Project
Intel Open Source Technology Center

[-- Attachment #2: ypdd_2012_barcelona_intro_hands_on_lab.pdf --]
[-- Type: application/pdf, Size: 996375 bytes --]

[-- Attachment #3: ypdd_2012_barcelona_intro_hands_on_lab_worksheets.pdf --]
[-- Type: application/pdf, Size: 189091 bytes --]

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

* Re: Slides from the Yocto Developer Day
  2012-11-13  7:01 ` Scott Garman
@ 2012-11-15 23:14   ` Trevor Woerner
  2012-11-16 18:00     ` Scott Garman
  2013-01-30 14:41   ` Marco
  1 sibling, 1 reply; 10+ messages in thread
From: Trevor Woerner @ 2012-11-15 23:14 UTC (permalink / raw)
  To: Scott Garman; +Cc: yocto@yoctoproject.org

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

Thank you.

These are interesting slides. As I was not able to attend the sessions in
Barcelona, I decided to "follow along at home" with the information posted
in this thread.

The slides pdf (ypdd_2012_barcelona_intro_hands_on_lab.pdf) describes the
first line of the contents of the meta-ypdd/recipes-ypdd/images/
ypdd-image.bb as follows:

IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} \
${POKY_EXTRA_INSTALL} psplash dropbear"

The _worksheets.pdf modifies it as follows:

IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} \
${CORE_IMAGE_EXTRA_INSTALL} psplash dropbear"


I tried both variations using both today's latest HEAD and denzil-7.0.1.
Neither variation worked in either release.

If anyone else is following along, I was able to get the latest HEAD to
work with the following first line:

IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} \
${CORE_IMAGE_EXTRA_INSTALL} psplash dropbear"

For me "latest HEAD" is defined as:

Build Configuration:
BB_VERSION        = "1.16.0"
TARGET_ARCH       = "i586"
TARGET_OS         = "linux"
MACHINE           = "qemux86"
DISTRO            = "poky"
DISTRO_VERSION    = "1.3+snapshot-20121115"
TUNE_FEATURES     = "m32 i586"
TARGET_FPU        = ""
meta
meta-yocto
meta-yocto-bsp    = "master:9e0d3c0faa9cc80ce8f2ce0eb31dcd20ef875955"
meta-ypdd         = "<unknown>:<unknown>"

denzil-7.0.1 never worked for me in any way. At best it would fail with
some obscure perl problem:

| ERROR: Function failed: do_configure (see
/home/trevor/devel/yocto/denzil-7.0.1/ypdd/tmp/work/x86_64-linux/openssl-native-1.0.0i-r0.2/temp/log.do_configure.30074
for further information)
| Can't locate find.pl in @INC (@INC contains:
/usr/lib/perl5/site_perl/5.16.0/x86_64-linux-thread-multi
/usr/lib/perl5/site_perl/5.16.0
/usr/lib/perl5/vendor_perl/5.16.0/x86_64-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.16.0
/usr/lib/perl5/5.16.0/x86_64-linux-thread-multi /usr/lib/perl5/5.16.0
/usr/lib/perl5/site_perl/5.16.0/x86_64-linux-thread-multi
/usr/lib/perl5/site_perl/5.16.0 /usr/lib/perl5/site_perl .) at
perlpath.plline 7.
NOTE: package openssl-native-1.0.0i-r0.2: task do_configure: Failed

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

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

* Re: Slides from the Yocto Developer Day
  2012-11-15 23:14   ` Trevor Woerner
@ 2012-11-16 18:00     ` Scott Garman
  2012-11-16 18:20       ` Trevor Woerner
  0 siblings, 1 reply; 10+ messages in thread
From: Scott Garman @ 2012-11-16 18:00 UTC (permalink / raw)
  To: Trevor Woerner; +Cc: yocto@yoctoproject.org

On 11/15/2012 03:14 PM, Trevor Woerner wrote:
> Thank you.
>
> These are interesting slides. As I was not able to attend the sessions
> in Barcelona, I decided to "follow along at home" with the information
> posted in this thread.
>
> The slides pdf (ypdd_2012_barcelona_intro_hands_on_lab.pdf) describes
> the first line of the contents of the
> meta-ypdd/recipes-ypdd/images/ypdd-image.bb <http://ypdd-image.bb> as
> follows:
>
> IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} \
> ${POKY_EXTRA_INSTALL} psplash dropbear"
>
> The _worksheets.pdf modifies it as follows:
>
> IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} \
> ${CORE_IMAGE_EXTRA_INSTALL} psplash dropbear"
>
>
> I tried both variations using both today's latest HEAD and denzil-7.0.1.
> Neither variation worked in either release.
>
> If anyone else is following along, I was able to get the latest HEAD to
> work with the following first line:
>
> IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} \
> ${CORE_IMAGE_EXTRA_INSTALL} psplash dropbear"
>
> For me "latest HEAD" is defined as:
>
> Build Configuration:
> BB_VERSION        = "1.16.0"
> TARGET_ARCH       = "i586"
> TARGET_OS         = "linux"
> MACHINE           = "qemux86"
> DISTRO            = "poky"
> DISTRO_VERSION    = "1.3+snapshot-20121115"
> TUNE_FEATURES     = "m32 i586"
> TARGET_FPU        = ""
> meta
> meta-yocto
> meta-yocto-bsp    = "master:9e0d3c0faa9cc80ce8f2ce0eb31dcd20ef875955"
> meta-ypdd         = "<unknown>:<unknown>"
>
> denzil-7.0.1 never worked for me in any way. At best it would fail with
> some obscure perl problem:
>
> | ERROR: Function failed: do_configure (see
> /home/trevor/devel/yocto/denzil-7.0.1/ypdd/tmp/work/x86_64-linux/openssl-native-1.0.0i-r0.2/temp/log.do_configure.30074
> for further information)
> | Can't locate find.pl <http://find.pl> in @INC (@INC contains:
> /usr/lib/perl5/site_perl/5.16.0/x86_64-linux-thread-multi
> /usr/lib/perl5/site_perl/5.16.0
> /usr/lib/perl5/vendor_perl/5.16.0/x86_64-linux-thread-multi
> /usr/lib/perl5/vendor_perl/5.16.0
> /usr/lib/perl5/5.16.0/x86_64-linux-thread-multi /usr/lib/perl5/5.16.0
> /usr/lib/perl5/site_perl/5.16.0/x86_64-linux-thread-multi
> /usr/lib/perl5/site_perl/5.16.0 /usr/lib/perl5/site_perl .) at
> perlpath.pl <http://perlpath.pl> line 7.
> NOTE: package openssl-native-1.0.0i-r0.2: task do_configure: Failed

The CORE_IMAGE_EXTRA_INSTALL issue must have been a typo I carried 
forward from when the labs were done with the edison release. As for the 
openssl-native failure, I'm not sure, but I'm guessing this may be due 
to a host contamination issue that wasn't triggered with the host OS 
setup we had for the lab computers.

Scott

-- 
Scott Garman
Embedded Linux Engineer - Yocto Project
Intel Open Source Technology Center


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

* Re: Slides from the Yocto Developer Day
  2012-11-16 18:00     ` Scott Garman
@ 2012-11-16 18:20       ` Trevor Woerner
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Woerner @ 2012-11-16 18:20 UTC (permalink / raw)
  To: Scott Garman; +Cc: yocto@yoctoproject.org

Okay, thanks for the comments.

I also want to highlight the change from "task-core-boot" to
"packagegroup-core-boot" for anyone wanting to try these steps on the
latest (although I'm not sure which string denzil prefers).


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

* Re: Slides from the Yocto Developer Day
  2012-11-13  7:01 ` Scott Garman
  2012-11-15 23:14   ` Trevor Woerner
@ 2013-01-30 14:41   ` Marco
  2013-01-30 16:43     ` Darren Hart
  1 sibling, 1 reply; 10+ messages in thread
From: Marco @ 2013-01-30 14:41 UTC (permalink / raw)
  To: yocto; +Cc: Darren Hart

Il 13/11/2012 08:01, Scott Garman ha scritto:
> On 11/12/2012 11:52 AM, Anna Dushistova wrote:
>> Hi All,
>>
>> Are the slides available somewhere?
>>
>> Thanks!
>> Anna.
>
> Hi Anna,
>
> Attached are the slides and lab packet I used for the intro hands-on lab
> in PDF format.


Hi all,
would be available slides and worksheet for the other YDD-2012 labs?

- "Hands on kernel lab" by Darren & Tom
- "YP eclipse plugin and HOB" by Jessica
- "Yocto Project Layer for In-Vehicle Infotainment"

FYI many presentations don't have a link available here:
https://www.yoctoproject.org/tools-resources/presentations


Cheers
-- 
Marco Cavallini | KOAN sas | Bergamo - Italia
  embedded and real-time software engineering
Phone:+39-035-255.235 - Fax:+39-178-22.39.748
       http://www.KoanSoftware.com


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

* Re: Slides from the Yocto Developer Day
  2013-01-30 14:41   ` Marco
@ 2013-01-30 16:43     ` Darren Hart
  2013-02-16  2:53       ` Tom Zanussi
  0 siblings, 1 reply; 10+ messages in thread
From: Darren Hart @ 2013-01-30 16:43 UTC (permalink / raw)
  To: koansoftware; +Cc: yocto

On 01/30/2013 06:41 AM, Marco wrote:
> Il 13/11/2012 08:01, Scott Garman ha scritto:
>> On 11/12/2012 11:52 AM, Anna Dushistova wrote:
>>> Hi All,
>>>
>>> Are the slides available somewhere?
>>>
>>> Thanks!
>>> Anna.
>>
>> Hi Anna,
>>
>> Attached are the slides and lab packet I used for the intro hands-on lab
>> in PDF format.
> 
> 
> Hi all,
> would be available slides and worksheet for the other YDD-2012 labs?
> 
> - "Hands on kernel lab" by Darren & Tom

We're working on making the kernel lab available online. Until then, the
materials would not be of much use as they were just specific enough to
the lab machines we set up, that they would frustrate more than
enlighten someone trying to use them on their own. Once they are up,
you'll be able to download them and do the labs on your own machines.

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Technical Lead - Linux Kernel


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

* Re: Slides from the Yocto Developer Day
  2013-01-30 16:43     ` Darren Hart
@ 2013-02-16  2:53       ` Tom Zanussi
  2013-02-22 15:32         ` Marco
  0 siblings, 1 reply; 10+ messages in thread
From: Tom Zanussi @ 2013-02-16  2:53 UTC (permalink / raw)
  To: Darren Hart; +Cc: yocto

On Wed, 2013-01-30 at 08:43 -0800, Darren Hart wrote:
> On 01/30/2013 06:41 AM, Marco wrote:
> > Il 13/11/2012 08:01, Scott Garman ha scritto:
> >> On 11/12/2012 11:52 AM, Anna Dushistova wrote:
> >>> Hi All,
> >>>
> >>> Are the slides available somewhere?
> >>>
> >>> Thanks!
> >>> Anna.
> >>
> >> Hi Anna,
> >>
> >> Attached are the slides and lab packet I used for the intro hands-on lab
> >> in PDF format.
> > 
> > 
> > Hi all,
> > would be available slides and worksheet for the other YDD-2012 labs?
> > 
> > - "Hands on kernel lab" by Darren & Tom
> 
> We're working on making the kernel lab available online. Until then, the
> materials would not be of much use as they were just specific enough to
> the lab machines we set up, that they would frustrate more than
> enlighten someone trying to use them on their own. Once they are up,
> you'll be able to download them and do the labs on your own machines.
> 

Hi,

The 'Hands-on Kernel Lab' has now been updated, and the instructions now
assume you'll be starting from scratch on your own machine - anything
related to the lab environment is now gone, and there's actually a lot
more material now (5 labs instead of 3).  See here for details:

https://lists.yoctoproject.org/pipermail/yocto/2013-February/014408.html

Tom



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

* Re: Slides from the Yocto Developer Day
  2013-02-16  2:53       ` Tom Zanussi
@ 2013-02-22 15:32         ` Marco
  0 siblings, 0 replies; 10+ messages in thread
From: Marco @ 2013-02-22 15:32 UTC (permalink / raw)
  To: yocto

Il 16/02/2013 03:53, Tom Zanussi ha scritto:
> On Wed, 2013-01-30 at 08:43 -0800, Darren Hart wrote:
>> On 01/30/2013 06:41 AM, Marco wrote:
>>> Il 13/11/2012 08:01, Scott Garman ha scritto:
>>>> On 11/12/2012 11:52 AM, Anna Dushistova wrote:
>>>>> Hi All,
>>>>>
>>>>> Are the slides available somewhere?
>>>>>
>>>>> Thanks!
>>>>> Anna.
>>>>
>>>> Hi Anna,
>>>>
>>>> Attached are the slides and lab packet I used for the intro hands-on lab
>>>> in PDF format.
>>>
>>>
>>> Hi all,
>>> would be available slides and worksheet for the other YDD-2012 labs?
>>>
>>> - "Hands on kernel lab" by Darren & Tom
>>
>> We're working on making the kernel lab available online. Until then, the
>> materials would not be of much use as they were just specific enough to
>> the lab machines we set up, that they would frustrate more than
>> enlighten someone trying to use them on their own. Once they are up,
>> you'll be able to download them and do the labs on your own machines.
>>
>
> Hi,
>
> The 'Hands-on Kernel Lab' has now been updated, and the instructions now
> assume you'll be starting from scratch on your own machine - anything
> related to the lab environment is now gone, and there's actually a lot
> more material now (5 labs instead of 3).  See here for details:
>
> https://lists.yoctoproject.org/pipermail/yocto/2013-February/014408.html
>
> Tom
>


Thank you.


-- 
Marco Cavallini | KOAN sas | Bergamo - Italia
  embedded and real-time software engineering
           Yocto Project Participant
Phone:+39-035-255.235 - Fax:+39-178-22.39.748
       http://www.KoanSoftware.com


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

end of thread, other threads:[~2013-02-22 15:32 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-12 10:52 Slides from the Yocto Developer Day Anna Dushistova
2012-11-12 18:44 ` Jeff Osier-Mixon
2012-11-13  7:01 ` Scott Garman
2012-11-15 23:14   ` Trevor Woerner
2012-11-16 18:00     ` Scott Garman
2012-11-16 18:20       ` Trevor Woerner
2013-01-30 14:41   ` Marco
2013-01-30 16:43     ` Darren Hart
2013-02-16  2:53       ` Tom Zanussi
2013-02-22 15:32         ` Marco

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.