Re: [yocto] checking out branches: tracking vs. tags

2012-05-24 Thread Mihai Lindner

On 05/24/2012 07:32 PM, Chris Larson wrote:

On Thu, May 24, 2012 at 8:42 AM, jfabernathy  wrote:

On 05/24/2012 11:21 AM, Chris Larson wrote:


On Thu, May 24, 2012 at 7:55 AM, jfabernathy
  wrote:


the Development Manual Appendix A

(http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#dev-manual-bsp-appendix),
I see the statement:

  $ git checkout denzil-7.0 -b denzil


What I think this does is create me a local branch that is fixed to what
was
committed when the denzil-7.0 tag was created and it will remain that way
and will not track the denzil branch as it gets updated.  Right

Now if I want to track the denzil branch as changes are committed, I
think I
do the following.

  $ git checkout origin/denzil -b denzil


Now I can do git pull commands to get the updates that are committed.
Right??


Your arguments are backwards. See git help checkout.


I looked at git help and man git, but it is still unclear because if I do
the first one where I checkout using the tag, I cannot git pull at all; I
get an error, about not enough information to merge.  However, if I use the
name of the branch I can now do git pull when changes are committed to
denzil.  That's why I thought I understood it.  But who knows.


You're right, my mistake. Those commands are fine, and your
understanding is largely correct. I highly recommend reading Pro Git
for further information.


If you checkout the tag you get the source as it was when the tag was made, 
without being able to pull, as there's nothing new to be pulled (in detached 
head state, that's why you get an error). You may see it as a snapshot of the 
repository.
If you checkout the branch, you'll pull commits brought to that remote branch.
Bye,
--
Mihai Lindner
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] How to use Software support layers such as "meta-browser" in a yocto image?

2012-05-29 Thread Mihai Lindner
On 05/29/2012 04:07 PM, jack wrote:
> Hello, all!
> Who can tell me how could I use the /Software support layers /that provided 
> by http://www.openembedded.org/wiki/LayerIndex into my own yocto image? For 
> example, how could I use "meta-browser" during image building?
> Thanks!
> 
> 
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

Hello,

Clone it into your ./poky/ directory, alongside the other meta directories in 
./poky/, and reference it in ./build/conf/bblayers.conf file, BBLAYERS variable 
(after you sourced oe-init-build-env).
Happy baking!

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


Re: [yocto] task 240 of 4900 and task 1526 of 4900 failed When I followed "The Yocto Project Quick Start"

2012-05-31 Thread Mihai Lindner
n.org/src/5.0/perl-5.14.2.tar.gz'. Unpack command 
> PATH="/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/i686-linux/usr/bin/perl-native:/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/i686-linux/usr/bin/core2-poky-linux:/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/atom-pc/usr/bin/crossscripts:/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/i686-linux/usr/sbin:/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/i686-linux/usr/bin:/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/i686-linux/sbin:/home/jack/work/poky-denzil-7.0-build/tmp/sysroots/i686-linux//bin:/home/jack/work/poky-denzil-7.0/scripts:/home/jack/work/poky-denzil-7.0/bitbake/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/jack/work/poky-denzil-7.0/scripts"
>  tar xz --no-same-owner -f 
> /home/jack/work/poky-denzil-7.0-build/downloads/perl-5.14.2.tar.gz failed 
> with return value 2
> NOTE: package perl-5.14.2-r6: task do_unpack: Failed
> ERROR: Task 874 
> (/home/jack/work/poky-denzil-7.0/meta/recipes-devtools/perl/perl_5.14.2.bb, 
> do_unpack) failed with exit code '1'
> NOTE: Tasks Summary: Attempted 3307 tasks of which 3305 didn't need to be 
> rerun and 2 failed.
> 
> Summary: 2 tasks failed:
>   
> /home/jack/work/poky-denzil-7.0/meta/recipes-devtools/perl/perl-native_5.14.2.bb,
>  do_unpack
>   /home/jack/work/poky-denzil-7.0/meta/recipes-devtools/perl/perl_5.14.2.bb, 
> do_unpack
> Summary: There was 1 WARNING message shown.
> Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
> 
> 
> 
> 
> 
> 
> 
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

Hello,

The archive seems to be corrupted somehow, gzip: stdin: invalid compressed 
data--crc error
Remove /home/jack/work/poky-denzil-7.0-build/downloads/perl-5.14.2.tar.gz and 
try again.
You may also see 
/home/jack/work/poky-denzil-7.0-build/tmp/work/i686-linux/perl-native-5.14.2-r0/temp/log.do_unpack.15111
 for further info on this.

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


Re: [yocto] about syslog configurable

2012-06-06 Thread Mihai Lindner
Hello,

Somehow `/etc/syslog-startup.conf` ends up to be a symlink of `busybox` and, 
apparently, `/etc/syslog-startup.conf` is `/etc/syslog-startup.conf.busybox`.

-- 
Mihai Lindner


On 06/01/2012 01:26 PM, Xu, HongnaX wrote:
> Hi all
>   QA check if syslog could be configured and run without problem on BSPs with 
> the latest poky/master tree.
> We found that the feature had been changed, so we could not check it, so is 
> there anybody tell us how to check?
> our test steps followed:
> **
> 1.Get a Yocto image from autobuilder or local build.
> 2.Launch image and check if syslog is started by default in background with 
> ps command.
> 3.Modify /etc/syslog-startup.conf, change the LOGFILE to 
> /var/log/messages.test
> 4.Restart syslog with command "/etc/init.d/syslog restart"
> 5.check if syslog is started in background with ps command
> 6.Check if there file generated under /var/log/message.test
> ***
> 
> Best Regards,
> Hongna
> 
> -Original Message-
> From: Sun, YilongX Y 
> Sent: Friday, June 01, 2012 6:04 PM
> To: yocto@yoctoproject.org
> Cc: Xu, HongnaX; Xu, Jiajun; Ma, NingX
> Subject: about syslog configurable
> 
> Hi all
>Anyone who knows the feature about " syslog configurable". Now I find no 
> syslog thread in the background.
> The file " /etc/syslog-startup.conf " is a link file. So I don't know how to 
> modify it. Who can help me to explain this feature.
> Thanks in advance.
> 
> 
> Best wishes
> Yilong..Sun
>  
>  
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
> 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Grub installation

2012-06-11 Thread Mihai Lindner
On 6/11/2012 5:12 PM, Jürgen Messerer wrote:
> Hi
> 
>  
> 
> I have the following problem. I have created with yocto a core-image-minimal 
> for x86 which I could test with qemu.
> 
>  
> 
> later I added the following lines to conf/local.conf at the end according to 
> the manual chapter 4.2.4:
> 
> IMAGE_INSTALL_append = " bash"
> 
> IMAGE_INSTALL_append = " strace"
> 
> IMAGE_INSTALL_append = " grub"
> 
>  
> 
> Bash and strace were installed correctly.
> 
> In the case of grub I couldn’t find the directory /boot/grub.
> 
>  
> 
> /etc/grub.d is installed also the folder /usr/lib/grub
> 
>  
> 
> Question 1:
> 
> Which grub recipe does yocto install from  
> poky-denzil-7.0/meta/recipes-bsp/grub/
> 
> I would prefer version 1.99.
> 
>  
> 
> Questin 2:
> 
> Will yocto not install a /boot/grub directory?
> 
>  
> 
> I would appreciate any tips and tricks to install grub correctly in the 
> core-image-minimal
> 
>  
> 
>  
> 
> Thanks a lot
> 
>  
> 
> Best regards
> 
>  
> 
> Juergen
> 
> 
> 
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
> 

Hello,

Look for /boot/grub/ in /dev/sda1
It should be there.

-- 
Mihai Lindner


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


[yocto] [PATCH 0/1] meta-cedartrail: fix PREFERRED_VERSION_linux-yocto

2012-08-17 Thread Mihai Lindner
Missing PREFERRED_VERSION_linux-yocto generated NOTEs when building.
"""
NOTE: preferred version 3.4% of linux-yocto not available (for item
virtual/kernel)
"""

[YOCTO #2962]

Signed-off-by: Mihai Lindner 
---
The following changes since commit 50b22497cb34c3502f3dca1407aecdcd4dfc52b1:

  layer.conf: Clarify BBFILES comments regarding recipe-* directories 
(2012-08-15 15:43:01 -0700)

are available in the git repository at:
  git://git.yoctoproject.org/poky-contrib mihai/bug2962
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mihai/bug2962

Mihai Lindner (1):
  meta-cedartrail: fixed PREFERRED_VERSION_linux-yocto

 meta-cedartrail/conf/machine/cedartrail.conf |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

-- 
1.7.8.6

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


[yocto] [PATCH 1/1] meta-cedartrail: fixed PREFERRED_VERSION_linux-yocto

2012-08-17 Thread Mihai Lindner
Missing PREFERRED_VERSION_linux-yocto generated NOTEs when building.
"""
NOTE: preferred version 3.4% of linux-yocto not available (for item
virtual/kernel)
"""

[YOCTO #2962]

Signed-off-by: Mihai Lindner 
---
 meta-cedartrail/conf/machine/cedartrail.conf |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-cedartrail/conf/machine/cedartrail.conf 
b/meta-cedartrail/conf/machine/cedartrail.conf
index dbd7d95..d6e7a57 100644
--- a/meta-cedartrail/conf/machine/cedartrail.conf
+++ b/meta-cedartrail/conf/machine/cedartrail.conf
@@ -13,6 +13,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
${XSERVER_IA32_EXT} \
cdv-pvr-driver \
"
+PREFERRED_VERSION_linux-yocto ?= "3.0%"
 PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
 PREFERRED_VERSION_mesa-dri ?= "7.11"
 PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
-- 
1.7.8.6

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


[yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-17 Thread Mihai Lindner
Please pull into linux-yocto-3.0, meta.

Added BLK_DEV_INITRD in boot-live.cfg for linux-yocto-3.0, meta branch.
Cedartrail (at least) cannot boot live from ISO image due to
BLK_DEV_INITRD missing:
"VFS: Cannot open root device "ram0" or unkown-block(0,0)"
Should fix #3050

[YOCTO #3050]

Signed-off-by: Mihai Lindner 
---

The following changes since commit bf5ee4945ee6d748e6abe16356f2357f76b5e2f0:

  meta: rename virto.scc to virtio.scc (2012-08-18 22:09:35 -0400)

are available in the git repository at:
  git://git.yoctoproject.org/poky-contrib mihai/linux-yocto-3.0/meta

Mihai Lindner (1):
  boot-live.cfg: enable BLK_DEV_INITRD in kernel

 meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

Mihai Lindner (1):
  boot-live.cfg: enable BLK_DEV_INITRD in kernel

 meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

-- 
1.7.8.6

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


[yocto] [PATCH 1/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-17 Thread Mihai Lindner
Added BLK_DEV_INITRD in boot-live.cfg for linux-yocto-3.0, meta branch.
Cedartrail (at least) cannot boot live from ISO image due to
BLK_DEV_INITRD missing:
"VFS: Cannot open root device "ram0" or unkown-block(0,0)"
Should fix #3050

[YOCTO #3050]

Signed-off-by: Mihai Lindner 
---
 meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/meta/cfg/kernel-cache/cfg/boot-live.cfg 
b/meta/cfg/kernel-cache/cfg/boot-live.cfg
index a102052..a3ea9f5 100644
--- a/meta/cfg/kernel-cache/cfg/boot-live.cfg
+++ b/meta/cfg/kernel-cache/cfg/boot-live.cfg
@@ -7,3 +7,5 @@ CONFIG_RD_GZIP=y
 CONFIG_BLK_DEV_IDECD=y
 CONFIG_ISO9660_FS=y
 CONFIG_BLK_DEV_SR=y
+# Initial ramdisk support
+CONFIG_BLK_DEV_INITRD=y
-- 
1.7.8.6

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


Re: [yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-18 Thread Mihai Lindner
On 2012-09-18 16:49, Tom Zanussi wrote:
> On Tue, 2012-09-18 at 08:21 -0400, Bruce Ashfield wrote:
>> On 12-09-18 01:59 AM, Mihai Lindner wrote:
>>> Please pull into linux-yocto-3.0, meta.
>>>
>>
>> Adding linux-yocto, Darren and Tom.
>>
>> This looks fine to me, and we should consider it for all the repositories,
>> not just 3.0.
>>
>> Tom/Darren. Any side effects you can think of for this change ?
>>
> 
> No, but shouldn't it already be there, inherited from base.cfg?

For cedartrail, at least, standard.cfg is used.

--Mihai

> 
> Tom
> 
>> Bruce
>>
>>> Added BLK_DEV_INITRD in boot-live.cfg for linux-yocto-3.0, meta branch.
>>> Cedartrail (at least) cannot boot live from ISO image due to
>>> BLK_DEV_INITRD missing:
>>> "VFS: Cannot open root device "ram0" or unkown-block(0,0)"
>>> Should fix #3050
>>>
>>> [YOCTO #3050]
>>>
>>> Signed-off-by: Mihai Lindner
>>> ---
>>>
>>> The following changes since commit bf5ee4945ee6d748e6abe16356f2357f76b5e2f0:
>>>
>>>meta: rename virto.scc to virtio.scc (2012-08-18 22:09:35 -0400)
>>>
>>> are available in the git repository at:
>>>git://git.yoctoproject.org/poky-contrib mihai/linux-yocto-3.0/meta
>>>
>>> Mihai Lindner (1):
>>>boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>
>>>   meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>>
>>> Mihai Lindner (1):
>>>boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>
>>>   meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>>
>>
> 
> 
> 
> 


-- 
Mihai Lindner
Yocto Project
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-18 Thread Mihai Lindner
On 2012-09-18 17:23, Tom Zanussi wrote:
> On Tue, 2012-09-18 at 16:58 +0300, Mihai Lindner wrote:
>> On 2012-09-18 16:49, Tom Zanussi wrote:
>>> On Tue, 2012-09-18 at 08:21 -0400, Bruce Ashfield wrote:
>>>> On 12-09-18 01:59 AM, Mihai Lindner wrote:
>>>>> Please pull into linux-yocto-3.0, meta.
>>>>>
>>>>
>>>> Adding linux-yocto, Darren and Tom.
>>>>
>>>> This looks fine to me, and we should consider it for all the repositories,
>>>> not just 3.0.
>>>>
>>>> Tom/Darren. Any side effects you can think of for this change ?
>>>>
>>>
>>> No, but shouldn't it already be there, inherited from base.cfg?
>>
>> For cedartrail, at least, standard.cfg is used.
>>
> 
> And standard inherits from base, so it should be turned on.  Somehow
> it's getting turned off in cedartrail...

Yes, it the final .config file is turned off. Solved it by setting it in 
boot-live.
--Mihai

> 
> Tom
> 
>> --Mihai
>>
>>>
>>> Tom
>>>
>>>> Bruce
>>>>
>>>>> Added BLK_DEV_INITRD in boot-live.cfg for linux-yocto-3.0, meta branch.
>>>>> Cedartrail (at least) cannot boot live from ISO image due to
>>>>> BLK_DEV_INITRD missing:
>>>>> "VFS: Cannot open root device "ram0" or unkown-block(0,0)"
>>>>> Should fix #3050
>>>>>
>>>>> [YOCTO #3050]
>>>>>
>>>>> Signed-off-by: Mihai Lindner
>>>>> ---
>>>>>
>>>>> The following changes since commit 
>>>>> bf5ee4945ee6d748e6abe16356f2357f76b5e2f0:
>>>>>
>>>>>meta: rename virto.scc to virtio.scc (2012-08-18 22:09:35 -0400)
>>>>>
>>>>> are available in the git repository at:
>>>>>git://git.yoctoproject.org/poky-contrib mihai/linux-yocto-3.0/meta
>>>>>
>>>>> Mihai Lindner (1):
>>>>>boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>>>
>>>>>   meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>>>>
>>>>> Mihai Lindner (1):
>>>>>boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>>>
>>>>>   meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
> 
> 
> 
> 


-- 
Mihai Lindner
Yocto Project
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-19 Thread Mihai Lindner
On 2012-09-19 18:43, Bruce Ashfield wrote:
> On 12-09-18 10:46 AM, Mihai Lindner wrote:
>> On 2012-09-18 17:23, Tom Zanussi wrote:
>>> On Tue, 2012-09-18 at 16:58 +0300, Mihai Lindner wrote:
>>>> On 2012-09-18 16:49, Tom Zanussi wrote:
>>>>> On Tue, 2012-09-18 at 08:21 -0400, Bruce Ashfield wrote:
>>>>>> On 12-09-18 01:59 AM, Mihai Lindner wrote:
>>>>>>> Please pull into linux-yocto-3.0, meta.
>>>>>>>
>>>>>>
>>>>>> Adding linux-yocto, Darren and Tom.
>>>>>>
>>>>>> This looks fine to me, and we should consider it for all the 
>>>>>> repositories,
>>>>>> not just 3.0.
>>>>>>
>>>>>> Tom/Darren. Any side effects you can think of for this change ?
>>>>>>
>>>>>
>>>>> No, but shouldn't it already be there, inherited from base.cfg?
>>>>
>>>> For cedartrail, at least, standard.cfg is used.
>>>>
>>>
>>> And standard inherits from base, so it should be turned on.  Somehow
>>> it's getting turned off in cedartrail...
>>
>> Yes, it the final .config file is turned off. Solved it by setting it in 
>> boot-live.
>> --Mihai
> 
> To follow up on this, is someone taking a closer look at this config
> to see if we can get a root cause for that option being disabled for
> this board ?
> 
> I won't be able to poke at it myself for another day or so.
> 
> Bruce
> 
I'm still digging on this, trying to figure out what cfg files are included / 
omitted by `configme` and why.
base.cfg is not included, nor stanadrd.cfg it seems.
The list of included cfg files is way to short.

--Mihai
>>
>>>
>>> Tom
>>>
>>>> --Mihai
>>>>
>>>>>
>>>>> Tom
>>>>>
>>>>>> Bruce
>>>>>>
>>>>>>> Added BLK_DEV_INITRD in boot-live.cfg for linux-yocto-3.0, meta branch.
>>>>>>> Cedartrail (at least) cannot boot live from ISO image due to
>>>>>>> BLK_DEV_INITRD missing:
>>>>>>> "VFS: Cannot open root device "ram0" or unkown-block(0,0)"
>>>>>>> Should fix #3050
>>>>>>>
>>>>>>> [YOCTO #3050]
>>>>>>>
>>>>>>> Signed-off-by: Mihai Lindner
>>>>>>> ---
>>>>>>>
>>>>>>> The following changes since commit 
>>>>>>> bf5ee4945ee6d748e6abe16356f2357f76b5e2f0:
>>>>>>>
>>>>>>> meta: rename virto.scc to virtio.scc (2012-08-18 22:09:35 -0400)
>>>>>>>
>>>>>>> are available in the git repository at:
>>>>>>> git://git.yoctoproject.org/poky-contrib mihai/linux-yocto-3.0/meta
>>>>>>>
>>>>>>> Mihai Lindner (1):
>>>>>>> boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>>>>>
>>>>>>>meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>>>>>1 files changed, 2 insertions(+), 0 deletions(-)
>>>>>>>
>>>>>>> Mihai Lindner (1):
>>>>>>> boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>>>>>
>>>>>>>meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>>>>>1 files changed, 2 insertions(+), 0 deletions(-)
>>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
> 
> 
> 


-- 
Mihai Lindner
Yocto Project
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-19 Thread Mihai Lindner
On 2012-09-19 22:01, Bruce Ashfield wrote:
> On 12-09-19 11:56 AM, Mihai Lindner wrote:
>> On 2012-09-19 18:43, Bruce Ashfield wrote:
>>> On 12-09-18 10:46 AM, Mihai Lindner wrote:
>>>> On 2012-09-18 17:23, Tom Zanussi wrote:
>>>>> On Tue, 2012-09-18 at 16:58 +0300, Mihai Lindner wrote:
>>>>>> On 2012-09-18 16:49, Tom Zanussi wrote:
>>>>>>> On Tue, 2012-09-18 at 08:21 -0400, Bruce Ashfield wrote:
>>>>>>>> On 12-09-18 01:59 AM, Mihai Lindner wrote:
>>>>>>>>> Please pull into linux-yocto-3.0, meta.
>>>>>>>>>
>>>>>>>>
>>>>>>>> Adding linux-yocto, Darren and Tom.
>>>>>>>>
>>>>>>>> This looks fine to me, and we should consider it for all the 
>>>>>>>> repositories,
>>>>>>>> not just 3.0.
>>>>>>>>
>>>>>>>> Tom/Darren. Any side effects you can think of for this change ?
>>>>>>>>
>>>>>>>
>>>>>>> No, but shouldn't it already be there, inherited from base.cfg?
>>>>>>
>>>>>> For cedartrail, at least, standard.cfg is used.
>>>>>>
>>>>>
>>>>> And standard inherits from base, so it should be turned on.  Somehow
>>>>> it's getting turned off in cedartrail...
>>>>
>>>> Yes, it the final .config file is turned off. Solved it by setting it in 
>>>> boot-live.
>>>> --Mihai
>>>
>>> To follow up on this, is someone taking a closer look at this config
>>> to see if we can get a root cause for that option being disabled for
>>> this board ?
>>>
>>> I won't be able to poke at it myself for another day or so.
>>>
>>> Bruce
>>>
>> I'm still digging on this, trying to figure out what cfg files are included 
>> / omitted by `configme` and why.
>> base.cfg is not included, nor stanadrd.cfg it seems.
>> The list of included cfg files is way to short.
> 
> That likely means the BSP .scc file is missing and update (i.e. does
> it still have scc_leaf?) and the tools aren't finding it and auto-generating 
> something to get you up and running.
> 
> I just checked the meta branch here, and it looks to be updated, but
> if you look at your build's linux source dir, what's in meta/top_tgt ?
> 
> Bruce
> 
In meta/top_tgt i have:

/home/mihai/cedartrail/tmp/work/cedartrail-poky-linux/linux-yocto-3.0.32+git5+46e8fc2bbbe73514e8d99101adaaa373f760ffa7_1+1e79e03d115ed177882ab53909a4f3555e434833-r4.1/linux/meta/cfg/kernel-cache/bsp/cedartrail/cedartrail-standard.scc


I've also hit an error, after more verbose runs of ./cedartrail-standard in 
meta/cfg/scratch/obj/:

./0-cedartrail-standard-897c5c055888aca397b3ab0d7be9e6fa.sco: line 17: 
standard_5b57715386592f694588063dd3ec6ebb: command not found

After this the scripts stops.

Mihai

> 
>>
>> --Mihai
>>>>
>>>>>
>>>>> Tom
>>>>>
>>>>>> --Mihai
>>>>>>
>>>>>>>
>>>>>>> Tom
>>>>>>>
>>>>>>>> Bruce
>>>>>>>>
>>>>>>>>> Added BLK_DEV_INITRD in boot-live.cfg for linux-yocto-3.0, meta 
>>>>>>>>> branch.
>>>>>>>>> Cedartrail (at least) cannot boot live from ISO image due to
>>>>>>>>> BLK_DEV_INITRD missing:
>>>>>>>>> "VFS: Cannot open root device "ram0" or unkown-block(0,0)"
>>>>>>>>> Should fix #3050
>>>>>>>>>
>>>>>>>>> [YOCTO #3050]
>>>>>>>>>
>>>>>>>>> Signed-off-by: Mihai Lindner
>>>>>>>>> ---
>>>>>>>>>
>>>>>>>>> The following changes since commit 
>>>>>>>>> bf5ee4945ee6d748e6abe16356f2357f76b5e2f0:
>>>>>>>>>
>>>>>>>>>  meta: rename virto.scc to virtio.scc (2012-08-18 22:09:35 -0400)
>>>>>>>>>
>>>>>>>>> are available in the git repository at:
>>>>>>>>>  git://git.yoctoproject.org/poky-contrib 
>>>>>>>>> mihai/linux-yocto-3.0/meta
>>>>>>>>>
>>>>>>>>> Mihai Lindner (1):
>>>>>>>>>  boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>>>>>>>
>>>>>>>>> meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>>>>>>> 1 files changed, 2 insertions(+), 0 deletions(-)
>>>>>>>>>
>>>>>>>>> Mihai Lindner (1):
>>>>>>>>>  boot-live.cfg: enable BLK_DEV_INITRD in kernel
>>>>>>>>>
>>>>>>>>> meta/cfg/kernel-cache/cfg/boot-live.cfg |2 ++
>>>>>>>>> 1 files changed, 2 insertions(+), 0 deletions(-)
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>>
>>
>>
> 
> 
> 


-- 
Mihai Lindner
Yocto Project
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [linux-yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-19 Thread Mihai Lindner
On 2012-09-19 23:32, Bruce Ashfield wrote:
> On 12-09-19 04:22 PM, Bruce Ashfield wrote:
>> On 12-09-19 03:39 PM, Mihai Lindner wrote:
>>> On 2012-09-19 22:01, Bruce Ashfield wrote:
>>>> On 12-09-19 11:56 AM, Mihai Lindner wrote:
>>>>> On 2012-09-19 18:43, Bruce Ashfield wrote:
>>>>>> On 12-09-18 10:46 AM, Mihai Lindner wrote:
>>>>>>> On 2012-09-18 17:23, Tom Zanussi wrote:
>>>>>>>> On Tue, 2012-09-18 at 16:58 +0300, Mihai Lindner wrote:
>>>>>>>>> On 2012-09-18 16:49, Tom Zanussi wrote:
>>>>>>>>>> On Tue, 2012-09-18 at 08:21 -0400, Bruce Ashfield wrote:
>>>>>>>>>>> On 12-09-18 01:59 AM, Mihai Lindner wrote:
>>>>>>>>>>>> Please pull into linux-yocto-3.0, meta.
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Adding linux-yocto, Darren and Tom.
>>>>>>>>>>>
>>>>>>>>>>> This looks fine to me, and we should consider it for all the
>>>>>>>>>>> repositories,
>>>>>>>>>>> not just 3.0.
>>>>>>>>>>>
>>>>>>>>>>> Tom/Darren. Any side effects you can think of for this change ?
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> No, but shouldn't it already be there, inherited from base.cfg?
>>>>>>>>>
>>>>>>>>> For cedartrail, at least, standard.cfg is used.
>>>>>>>>>
>>>>>>>>
>>>>>>>> And standard inherits from base, so it should be turned on. Somehow
>>>>>>>> it's getting turned off in cedartrail...
>>>>>>>
>>>>>>> Yes, it the final .config file is turned off. Solved it by setting
>>>>>>> it in boot-live.
>>>>>>> --Mihai
>>>>>>
>>>>>> To follow up on this, is someone taking a closer look at this config
>>>>>> to see if we can get a root cause for that option being disabled for
>>>>>> this board ?
>>>>>>
>>>>>> I won't be able to poke at it myself for another day or so.
>>>>>>
>>>>>> Bruce
>>>>>>
>>>>> I'm still digging on this, trying to figure out what cfg files are
>>>>> included / omitted by `configme` and why.
>>>>> base.cfg is not included, nor stanadrd.cfg it seems.
>>>>> The list of included cfg files is way to short.
>>>>
>>>> That likely means the BSP .scc file is missing and update (i.e. does
>>>> it still have scc_leaf?) and the tools aren't finding it and
>>>> auto-generating something to get you up and running.
>>>>
>>>> I just checked the meta branch here, and it looks to be updated, but
>>>> if you look at your build's linux source dir, what's in meta/top_tgt ?
>>>>
>>>> Bruce
>>>>
>>> In meta/top_tgt i have:
>>>
>>> /home/mihai/cedartrail/tmp/work/cedartrail-poky-linux/linux-yocto-3.0.32+git5+46e8fc2bbbe73514e8d99101adaaa373f760ffa7_1+1e79e03d115ed177882ab53909a4f3555e434833-r4.1/linux/meta/cfg/kernel-cache/bsp/cedartrail/cedartrail-standard.scc
>>>
>>>
>>>
>>> I've also hit an error, after more verbose runs of
>>> ./cedartrail-standard in meta/cfg/scratch/obj/:
>>>
>>> ./0-cedartrail-standard-897c5c055888aca397b3ab0d7be9e6fa.sco: line 17:
>>> standard_5b57715386592f694588063dd3ec6ebb: command not found
>>>
>>> After this the scripts stops.
>>>
>>
>> Aha. This definitely breaks the configuration chain (and would throw
>> a hard error in the 3.4 kernel) and is where the options drop. But this
>> should no way be specific to this board. I'll get something configured
>> here, since I need to see this happen in front of me.
> 
> I've finally reproduced this. Leave the issue with me and I'll get
> back to you with a fix.
> 
> Bruce

Yay! Thanks.
It's not specific, it's just easier to hit; for cedartrail only 3.0 is 
available, and also set as preferred.

--Mihai

> 
>>
>> Cheers,

Re: [yocto] [linux-yocto] [PATCH 0/1] [linux-yocto-3.0] boot-live.cfg: enable BLK_DEV_INITRD in kernel

2012-09-20 Thread Mihai Lindner
On 2012-09-20 05:38, Tom Zanussi wrote:
> On Wed, 2012-09-19 at 19:56 -0400, Bruce Ashfield wrote:
>> On 12-09-19 04:54 PM, Mihai Lindner wrote:
>>> On 2012-09-19 23:32, Bruce Ashfield wrote:
>>>> On 12-09-19 04:22 PM, Bruce Ashfield wrote:
>>>>> On 12-09-19 03:39 PM, Mihai Lindner wrote:
>>>>>> On 2012-09-19 22:01, Bruce Ashfield wrote:
>>>>>>> On 12-09-19 11:56 AM, Mihai Lindner wrote:
>>>>>>>> On 2012-09-19 18:43, Bruce Ashfield wrote:
>>>>>>>>> On 12-09-18 10:46 AM, Mihai Lindner wrote:
>>>>>>>>>> On 2012-09-18 17:23, Tom Zanussi wrote:
>>>>>>>>>>> On Tue, 2012-09-18 at 16:58 +0300, Mihai Lindner wrote:
>>>>>>>>>>>> On 2012-09-18 16:49, Tom Zanussi wrote:
>>>>>>>>>>>>> On Tue, 2012-09-18 at 08:21 -0400, Bruce Ashfield wrote:
>>>>>>>>>>>>>> On 12-09-18 01:59 AM, Mihai Lindner wrote:
>>>>>>>>>>>>>>> Please pull into linux-yocto-3.0, meta.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Adding linux-yocto, Darren and Tom.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> This looks fine to me, and we should consider it for all the
>>>>>>>>>>>>>> repositories,
>>>>>>>>>>>>>> not just 3.0.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Tom/Darren. Any side effects you can think of for this change ?
>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> No, but shouldn't it already be there, inherited from base.cfg?
>>>>>>>>>>>>
>>>>>>>>>>>> For cedartrail, at least, standard.cfg is used.
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> And standard inherits from base, so it should be turned on. Somehow
>>>>>>>>>>> it's getting turned off in cedartrail...
>>>>>>>>>>
>>>>>>>>>> Yes, it the final .config file is turned off. Solved it by setting
>>>>>>>>>> it in boot-live.
>>>>>>>>>> --Mihai
>>>>>>>>>
>>>>>>>>> To follow up on this, is someone taking a closer look at this config
>>>>>>>>> to see if we can get a root cause for that option being disabled for
>>>>>>>>> this board ?
>>>>>>>>>
>>>>>>>>> I won't be able to poke at it myself for another day or so.
>>>>>>>>>
>>>>>>>>> Bruce
>>>>>>>>>
>>>>>>>> I'm still digging on this, trying to figure out what cfg files are
>>>>>>>> included / omitted by `configme` and why.
>>>>>>>> base.cfg is not included, nor stanadrd.cfg it seems.
>>>>>>>> The list of included cfg files is way to short.
>>>>>>>
>>>>>>> That likely means the BSP .scc file is missing and update (i.e. does
>>>>>>> it still have scc_leaf?) and the tools aren't finding it and
>>>>>>> auto-generating something to get you up and running.
>>>>>>>
>>>>>>> I just checked the meta branch here, and it looks to be updated, but
>>>>>>> if you look at your build's linux source dir, what's in meta/top_tgt ?
>>>>>>>
>>>>>>> Bruce
>>>>>>>
>>>>>> In meta/top_tgt i have:
>>>>>>
>>>>>> /home/mihai/cedartrail/tmp/work/cedartrail-poky-linux/linux-yocto-3.0.32+git5+46e8fc2bbbe73514e8d99101adaaa373f760ffa7_1+1e79e03d115ed177882ab53909a4f3555e434833-r4.1/linux/meta/cfg/kernel-cache/bsp/cedartrail/cedartrail-standard.scc
>>>>>>
>>>>>>
>>>>>>
>>>>>> I've also hit an error, after more verbose runs of
>>>>>> ./cedartrail-standard in meta/cfg/scratch/obj/:
>>>>>>
>>>

Re: [yocto] Cannot do atom-pc build with meta-cedartrail

2012-09-27 Thread Mihai Lindner
On 2012-09-27 14:31, Burton, Ross wrote:
> Hi,
> 
> If I add meta-intel and meta-cedartrail to my bblayers, when I try and
> do an atom-pc build (which I thought should still work, right?) I get
> the following error:
> 
> NOTE: Error during finalise of
> /home/ross/Yocto/poky/meta/recipes-kernel/linux/linux-yocto_3.0.bb
> ERROR: ExpansionError during parsing
> /home/ross/Yocto/poky/meta/recipes-kernel/linux/linux-yocto_3.0.bb:
> Failure expanding variable SRCPV, expression was
> ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError:
> Fetcher failure for URL:
> 'git://git.yoctoproject.org/linux-yocto-3.0;protocol=git;bareclone=1;branch=yocto/standard/common-pc/atom-pc,meta,yocto/pvr;name=machine,meta,pvr'.
> Please set SRCREV to a valid value
> 
> That's a bug, right?
> 
> Ross
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
> 
> 

That's a bug alright.
It seems the overall SRC_URI of linux-yocto is overwritten by meta-cedartrail 
layer, when included. Should be fixed by using SRC_URI_cedartrail instead.

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


Re: [yocto] Cannot do atom-pc build with meta-cedartrail

2012-10-02 Thread Mihai Lindner
On 2012-09-29 23:50, Ross Burton wrote:
> On Thursday, 27 September 2012 at 18:07, Tom Zanussi wrote:
>> Yeah, looks like the other SRC_URIs do that, but it's missing from that
>> SRC_URI - I just pushed a fix for this one to meta-intel/master.
> 
> Thanks Tom, I've been frequently flipping between atom-pc and cedartrail and 
> this was getting annoying.
> 
> Ross 
> 
> 
> 

Unfortunately this change breaks SRC_URI appends, discarded or overwritten; 
e.g. adding meta-tlk brings no change to SRC_URI.

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


Re: [yocto] Cannot do atom-pc build with meta-cedartrail

2012-10-03 Thread Mihai Lindner
On 2012-10-02 19:02, Tom Zanussi wrote:
> On Tue, 2012-10-02 at 18:00 +0300, Mihai Lindner wrote:
>> On 2012-09-29 23:50, Ross Burton wrote:
>>> On Thursday, 27 September 2012 at 18:07, Tom Zanussi wrote:
>>>> Yeah, looks like the other SRC_URIs do that, but it's missing from that
>>>> SRC_URI - I just pushed a fix for this one to meta-intel/master.
>>>
>>> Thanks Tom, I've been frequently flipping between atom-pc and cedartrail 
>>> and this was getting annoying.
>>>
>>> Ross 
>>>
>>>
>>>
>>
>> Unfortunately this change breaks SRC_URI appends, discarded or overwritten; 
>> e.g. adding meta-tlk brings no change to SRC_URI.
>>
> 
> It shouldn't though, since the application of the meta-tlk SRC_URI
> bbappend should follow the SRC_URI assignment in the cedartrail
> bbappend.  On the other hand, the layer priorities don't seem to be
> right - meta-cedartrail is supposed to have a priority of 6, but it
> doesn't actually seem to:
> 
> BBFILE_PRIORITY_cedartrail = "6" 
> 
> [trz@empanada build]$ bitbake-layers show_layers
> layer path  priority
> ==
> meta  /home/trz/yocto/crownbay-test/meta5
> meta-yocto/home/trz/yocto/crownbay-test/meta-yocto  5
> meta-yocto-bsp/home/trz/yocto/crownbay-test/meta-yocto-bsp  5
> meta-intel/home/trz/yocto/crownbay-test/meta-intel  5
> meta-cedartrail   
> /home/trz/yocto/crownbay-test/meta-intel/meta-cedartrail  5
> meta-tlk  /home/trz/yocto/crownbay-test/meta-intel/meta-tlk  5
> 
> On the other hand, meta-tlk does follow meta-cedatrail in the parse
> order so should append to the SRC_URI...
> 
> Tom
> 
> 
> 

Submitted bug #3217 https://bugzilla.yoctoproject.org/show_bug.cgi?id=3217
For the records.

Cheers,

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


[yocto] [PATCH 0/1] meta-tlk: fix ignored SRC_URI appends

2012-10-04 Thread Mihai Lindner
Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
SRC_URI_append instead of SRC_URI.
Also placed all variables in an .inc file to be required by all
linux-yocto recipes in here, since all versions use the same.

[YOCTO #3217]

Signed-off-by: Mihai Lindner 
---

The following changes since commit c4a86a2ad5df3a94b47e394090f67f7e324b1483:

  meta-crystalforest: Create a custom build Image recipe. (2012-10-03 23:56:13 
-0500)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib mihai/bug3217
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mihai/bug3217

Mihai Lindner (1):
  meta-tlk: fix ignored SRC_URI appends

 meta-tlk/recipes-kernel/linux/linux-yocto.inc  | 3 +++
 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend | 7 +--
 4 files changed, 6 insertions(+), 18 deletions(-)
 create mode 100644 meta-tlk/recipes-kernel/linux/linux-yocto.inc

-- 
1.7.12

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


[yocto] [PATCH 1/1] meta-tlk: fix ignored SRC_URI appends

2012-10-04 Thread Mihai Lindner
Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
SRC_URI_append instead of SRC_URI.
Also placed all variables in an .inc file to be required by all
linux-yocto recipes in here, since all versions use the same.

[YOCTO #3217]

Signed-off-by: Mihai Lindner 
---
 meta-tlk/recipes-kernel/linux/linux-yocto.inc  | 3 +++
 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend | 7 +--
 4 files changed, 6 insertions(+), 18 deletions(-)
 create mode 100644 meta-tlk/recipes-kernel/linux/linux-yocto.inc

diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto.inc 
b/meta-tlk/recipes-kernel/linux/linux-yocto.inc
new file mode 100644
index 000..96a3adf
--- /dev/null
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto.inc
@@ -0,0 +1,3 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+SRC_URI_append += "file://time-limited-kernel.cfg"
+PR .= ".2"
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
index 138cc21..bd54419 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
index 138cc21..bd54419 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
index 138cc21..bd54419 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}.inc
-- 
1.7.12

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


Re: [yocto] [PATCH 1/1] meta-tlk: fix ignored SRC_URI appends

2012-10-05 Thread Mihai Lindner
On 2012-10-04 20:51, Paul Eggleton wrote:
> Hi Mihai,
> 
> On Thursday 04 October 2012 20:47:08 Mihai Lindner wrote:
>> Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
>> SRC_URI_append instead of SRC_URI.
>> Also placed all variables in an .inc file to be required by all
>> linux-yocto recipes in here, since all versions use the same.
>>
>> [YOCTO #3217]
>>
>> Signed-off-by: Mihai Lindner 
>> ---
>>  meta-tlk/recipes-kernel/linux/linux-yocto.inc  | 3 +++
>>  meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend | 7 +--
>>  meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend | 7 +--
>>  meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend | 7 +--
>>  4 files changed, 6 insertions(+), 18 deletions(-)
>>  create mode 100644 meta-tlk/recipes-kernel/linux/linux-yocto.inc
>>
>> diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto.inc
>> b/meta-tlk/recipes-kernel/linux/linux-yocto.inc new file mode 100644
>> index 000..96a3adf
>> --- /dev/null
>> +++ b/meta-tlk/recipes-kernel/linux/linux-yocto.inc
>> @@ -0,0 +1,3 @@
>> +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>> +SRC_URI_append += "file://time-limited-kernel.cfg"
> 
> You should use SRC_URI_append = " file://time-limited-kernel.cfg" (note 
> leading 
> space) here. Obviously what you have done does work, but we want to avoid 
> _append += as it can be confusing.
> 
> Cheers,
> Paul
> 
Hi Paul,

Ok, good to know. I will resend.
I was trying to avoid spaces in values and += fitted the description.

Thanks,
-- 
Mihai Lindner
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH 0/1] meta-tlk: fix ignored SRC_URI appends

2012-10-05 Thread Mihai Lindner
Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
SRC_URI_append instead of SRC_URI.
Also placed all variables in an .inc file to be required by all
linux-yocto recipes in here, since all versions use the same.

[YOCTO #3217]

Signed-off-by: Mihai Lindner 
---
The following changes since commit 6eea475e2038c1de3fbbd5bcd0986862ff85bb9a:

  meta-crownbay: remove 3.0 kernel support (2012-10-04 20:20:52 -0500)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib mihai/bug3217
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mihai/bug3217

Mihai Lindner (1):
  meta-tlk: fix ignored SRC_URI appends

 meta-tlk/recipes-kernel/linux/linux-yocto.inc  | 3 +++
 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend | 7 +--
 4 files changed, 6 insertions(+), 18 deletions(-)
 create mode 100644 meta-tlk/recipes-kernel/linux/linux-yocto.inc

-- 
1.7.12

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


[yocto] [PATCH 1/1] meta-tlk: fix ignored SRC_URI appends

2012-10-05 Thread Mihai Lindner
Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
SRC_URI_append instead of SRC_URI.
Also placed all variables in an .inc file to be required by all
linux-yocto recipes in here, since all versions use the same.

[YOCTO #3217]

Signed-off-by: Mihai Lindner 
---
 meta-tlk/recipes-kernel/linux/linux-yocto.inc  | 3 +++
 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend | 7 +--
 4 files changed, 6 insertions(+), 18 deletions(-)
 create mode 100644 meta-tlk/recipes-kernel/linux/linux-yocto.inc

diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto.inc 
b/meta-tlk/recipes-kernel/linux/linux-yocto.inc
new file mode 100644
index 000..b1cf883
--- /dev/null
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto.inc
@@ -0,0 +1,3 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+SRC_URI_append = " file://time-limited-kernel.cfg"
+PR .= ".2"
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
index 138cc21..bd54419 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
index 138cc21..bd54419 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
index 138cc21..bd54419 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}.inc
-- 
1.7.12

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


[yocto] [PATCH 1/1] meta-tlk: fix ignored SRC_URI appends

2012-10-05 Thread Mihai Lindner
Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
SRC_URI_append instead of SRC_URI.
Also placed all variables in an .inc file to be required by all
linux-yocto recipes in here, since all versions use the same.

[YOCTO #3217]

Signed-off-by: Mihai Lindner 
---
 meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc  | 3 +++
 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend | 7 +--
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend | 7 +--
 4 files changed, 6 insertions(+), 18 deletions(-)
 create mode 100644 meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc

diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc 
b/meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc
new file mode 100644
index 000..b1cf883
--- /dev/null
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc
@@ -0,0 +1,3 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+SRC_URI_append = " file://time-limited-kernel.cfg"
+PR .= ".2"
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
index 138cc21..e316320 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}-tlk.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
index 138cc21..e316320 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}-tlk.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
index 138cc21..e316320 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
@@ -1,6 +1 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# enable the time limited kernel configuration options
-SRC_URI += "file://time-limited-kernel.cfg"
-
-PR .= ".1"
+require ${PN}-tlk.inc
-- 
1.7.12

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


Re: [yocto] [PATCH 1/1] meta-tlk: fix ignored SRC_URI appends

2012-10-05 Thread Mihai Lindner
On 2012-10-05 14:51, Richard Purdie wrote:
> On Fri, 2012-10-05 at 14:20 +0300, Mihai Lindner wrote:
>> Fix SRC_URI appends ignored by meta-cedartrail and meta-crownbay. Used
>> SRC_URI_append instead of SRC_URI.
>> Also placed all variables in an .inc file to be required by all
>> linux-yocto recipes in here, since all versions use the same.
>>
>> [YOCTO #3217]
>>
>> Signed-off-by: Mihai Lindner 
>> ---
>>  meta-tlk/recipes-kernel/linux/linux-yocto.inc  | 3 +++
> 
> Could you use a slightly less generic name for this include please? I
> worry about collisions...
> 
> Cheers,
> 
> Richard
> 
> 
> 
> 
Sure.

Thanks,

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


[yocto] [PATCH 0/1] meta-tlk: fix included file name

2012-10-06 Thread Mihai Lindner
PN in linux-yocto-tlk.inc takes the .inc file name and becomes
linux-yocto-tlk. Renamed to linux-yocto_tlk.inc to avoid confusions.
Related to: [YOCTO #3217]

Signed-off-by: Mihai Lindner 
---
The following changes since commit 7228f6b0c81817c8a8455ea78271abfd5d66fed8:

  meta-tlk: fix ignored SRC_URI appends (2012-10-05 14:47:55 -0500)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib mihai/bug3217
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mihai/bug3217

Mihai Lindner (1):
  meta-tlk: fix included file name

 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend  | 2 +-
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend  | 2 +-
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend  | 2 +-
 .../recipes-kernel/linux/{linux-yocto-tlk.inc => linux-yocto_tlk.inc}   | 0
 4 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-tlk/recipes-kernel/linux/{linux-yocto-tlk.inc => 
linux-yocto_tlk.inc} (100%)

-- 
1.7.12

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


[yocto] [PATCH 1/1] meta-tlk: fix included file name

2012-10-06 Thread Mihai Lindner
PN in linux-yocto-tlk.inc takes the .inc file name and becomes
linux-yocto-tlk. Renamed to linux-yocto_tlk.inc to avoid confusions.
Related to: [YOCTO #3217]

Signed-off-by: Mihai Lindner 
---
 meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend  | 2 +-
 meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend  | 2 +-
 meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend  | 2 +-
 .../recipes-kernel/linux/{linux-yocto-tlk.inc => linux-yocto_tlk.inc}   | 0
 4 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-tlk/recipes-kernel/linux/{linux-yocto-tlk.inc => 
linux-yocto_tlk.inc} (100%)

diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
index e316320..f580168 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -1 +1 @@
-require ${PN}-tlk.inc
+require ${PN}_tlk.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
index e316320..f580168 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -1 +1 @@
-require ${PN}-tlk.inc
+require ${PN}_tlk.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend 
b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
index e316320..f580168 100644
--- a/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
+++ b/meta-tlk/recipes-kernel/linux/linux-yocto_3.4.bbappend
@@ -1 +1 @@
-require ${PN}-tlk.inc
+require ${PN}_tlk.inc
diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc 
b/meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc
similarity index 100%
rename from meta-tlk/recipes-kernel/linux/linux-yocto-tlk.inc
rename to meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc
-- 
1.7.12

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


Re: [yocto] .bashrc not being used by root account

2012-10-17 Thread Mihai Lindner

On 10/17/2012 09:25 AM, Venkata ramana gollamudi wrote:

You can check the same with  "strace -f bash"
You can see the files being loaded, as there is a rc file loading sequence 
exists for bash.

Regards,
Ramana


From: yocto-boun...@yoctoproject.org [yocto-boun...@yoctoproject.org] on behalf 
of Jonathan Haws [jonathan.h...@sdl.usu.edu]
Sent: Tuesday, October 16, 2012 9:32 PM
To: yocto@yoctoproject.org
Subject: [yocto] .bashrc not being used by root account

I have modified the .bashrc file for the system, however the root account does 
not seem to use it by default.  What am I missing?  I would rather not have to 
source the .bashrc file every time I login as root.


Try `echo $0` to see the shell you're in. By default you should be in 
`sh`, which does not source .bashrc.

You can execute `bash` after login, or change the login shell of 'root'.

Cheers,
--Mihai



Thanks,
Jonathan

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




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


Re: [yocto] .bashrc not being used by root account

2012-10-19 Thread Mihai Lindner

On 10/18/2012 07:52 PM, Jonathan Haws wrote:

Okay, I have done a couple of things:

1. I appended to the base-passwd recipe and added my own patch that would patch 
the passwd file to have root use a bash shell.  I have verified that this is 
the case when I login via echo $0.  It tells me that root's shell is bash.

2. I have appended to the base-files recipe and added a do_install_append() 
function to my bbappend file that copies the dot.bashrc to /home/root/.bashrc.  
I have verified that this is taking place and the .bashrc file is actually in 
/home/root.

3. I ran 'strace -f bash' after logging in and /home/root/.bashrc is sourced (I 
saw it in the output and my aliases were available).

However, upon first login, it appears that /home/root/.bashrc is NOT sourced by 
bash.  How can I get bash to source that file when I login at a console?



There are 2 solutions for this: rename your .bashrc in .profile, or copy 
/etc/skel/.profile in /root/.profile


.bashrc is sourced only for non-login shells. For console login shells 
only .profile (or .bash_profile or .bash_login) is sourced.


Cheers,
--Mihai


Thanks for the help!
Jonathan



From: yocto-boun...@yoctoproject.org [yocto-boun...@yoctoproject.org] on behalf 
of Mihai Lindner [mihaix.lind...@linux.intel.com]
Sent: Wednesday, October 17, 2012 02:29
To: yocto@yoctoproject.org
Subject: Re: [yocto] .bashrc not being used by root account

On 10/17/2012 09:25 AM, Venkata ramana gollamudi wrote:

You can check the same with  "strace -f bash"
You can see the files being loaded, as there is a rc file loading sequence 
exists for bash.

Regards,
Ramana


From: yocto-boun...@yoctoproject.org [yocto-boun...@yoctoproject.org] on behalf 
of Jonathan Haws [jonathan.h...@sdl.usu.edu]
Sent: Tuesday, October 16, 2012 9:32 PM
To: yocto@yoctoproject.org
Subject: [yocto] .bashrc not being used by root account

I have modified the .bashrc file for the system, however the root account does 
not seem to use it by default.  What am I missing?  I would rather not have to 
source the .bashrc file every time I login as root.


Try `echo $0` to see the shell you're in. By default you should be in
`sh`, which does not source .bashrc.
You can execute `bash` after login, or change the login shell of 'root'.

Cheers,
--Mihai



Thanks,
Jonathan

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




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





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


Re: [yocto] Fails to launch the hob

2012-12-24 Thread Mihai Lindner
On Mon, 2012-12-24 at 15:37 +0800, Biao wrote:
> Hi all, 
> 
> 
> I can not launch hob on my ubun-10.04, it seems saying "no PyGobject" whereas 
> python-object has already been installed. Can anyone kindly give a help?
> 
> 
> $ hob
> FATAL: Gtk+, PyGtk and PyGobject are required to use Hob,
> You have Gtk+ 2.20.1 and PyGtk 2.17.0.
> 
> 
> $ sudo apt-get install python-gobject
> Reading package lists... Done
> Building dependency tree   
> Reading state information... Done
> python-gobject is already the newest version.
> 
Python-gobject seems fine, Gtk seems fine (you have 2.20.1, Hob wants
higher than 2.20.0), which leaves python-gtk2 version 2.17.0 on your
system. Hob wants a version higher than 2.21.0.

--Mihai
> 
> $ uname -a
> Linux zb-d 2.6.32-33-generic #72-Ubuntu SMP Fri Jul 29 21:07:13 UTC 2011 
> x86_64 GNU/Linux
> 
> 
> Thanks,
> Biao
> ___ yocto mailing list 
> yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto


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


Re: [yocto] Fails to launch the hob

2012-12-24 Thread Mihai Lindner
On Mon, 2012-12-24 at 14:23 +0200, Mihai Lindner wrote:
> On Mon, 2012-12-24 at 15:37 +0800, Biao wrote:
> > Hi all, 
> > 
> > 
> > I can not launch hob on my ubun-10.04, it seems saying "no PyGobject" 
> > whereas python-object has already been installed. Can anyone kindly give a 
> > help?
> > 
Oh, forgot to mention here, that you should probably be using Denzil,
instead of Danny or 'master'.
> > 
> > $ hob
> > FATAL: Gtk+, PyGtk and PyGobject are required to use Hob,
> > You have Gtk+ 2.20.1 and PyGtk 2.17.0.
> > 
> > 
> > $ sudo apt-get install python-gobject
> > Reading package lists... Done
> > Building dependency tree   
> > Reading state information... Done
> > python-gobject is already the newest version.
> > 
> Python-gobject seems fine, Gtk seems fine (you have 2.20.1, Hob wants
> higher than 2.20.0), which leaves python-gtk2 version 2.17.0 on your
> system. Hob wants a version higher than 2.21.0.
> 
> --Mihai
> > 
> > $ uname -a
> > Linux zb-d 2.6.32-33-generic #72-Ubuntu SMP Fri Jul 29 21:07:13 UTC 2011 
> > x86_64 GNU/Linux
> > 
> > 
> > Thanks,
> > Biao
> > ___ yocto mailing list 
> > yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto
> 
> 
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


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


[yocto] [PATCH] [yocto-autobuilder] BuildImages: fix description

2013-09-19 Thread Mihai Lindner
The description of shell commands is printed as a list of characters
separated by spaces.
The description needs to be in a list, when it's set after
ShellCommand.__init__().

Signed-off-by: Mihai Lindner 
---
 lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py 
b/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py
index 0a9c3fc..3063bef 100644
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py
+++ b/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py
@@ -39,7 +39,7 @@ class BuildImages(ShellCommand):
 self.command = "echo 'Skipping Step.'"
 else:
 self.command = ". ./oe-init-build-env; bitbake " + self.images
-self.description = "Building " + str(self.images)
+self.description = ["Building " + str(self.images)]
 ShellCommand.start(self)
 
 def describe(self, done=False):
-- 
1.8.3.2

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