All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi] du giving non-integer result?
@ 2015-09-07  2:40 Trevor Woerner
  2015-09-07  7:21 ` Khem Raj
  2015-09-11  1:37 ` Trevor Woerner
  0 siblings, 2 replies; 12+ messages in thread
From: Trevor Woerner @ 2015-09-07  2:40 UTC (permalink / raw)
  To: yocto@yoctoproject.org

I can't explain why, but when I build "core-image-minimal" for
MACHINE=raspberrpi2 I get the following SD creation error:

    ERROR: Error: The image creation script
    '/z/layerindex-master/raspi2/tmp/work/raspberrypi2-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.rpi-sdimg'
    returned 2:
    expr: non-integer argument
    WARNING:
    /z/layerindex-master/raspi2/tmp/work/raspberrypi2-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.rpi-sdimg:1
    exit 2 from
      ROOTFS_SIZE_ALIGNED=$(expr 12288.0 + 4096 - 1)


Looking at meta-raspberrypi/classes/sdcard_image-rpi.bbclass, line 83:

    ROOTFS_SIZE_ALIGNED=$(expr ${ROOTFS_SIZE} +
${IMAGE_ROOTFS_ALIGNMENT} - 1)

which looks like the offending line. ROOTFS_SIZE seems to come from the
line immediately above:

    ROOTFS_SIZE=`du -bks ${SDIMG_ROOTFS} | awk '{print $1}'`

But 'du' doesn't return non-integer values, does it? When I invoke the
host's 'du' I get the correct value:

    du -bks
/z/layerindex-master/raspi2/tmp/deploy/images/raspberrypi2/core-image-minimal-raspberrypi2-20150906234844.rootfs.ext3
| awk '{print $1}'
    12288

Does anyone have any idea why the ".0" is getting tacked on?

Best regards,
    Trevor


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-07  2:40 [meta-raspberrypi] du giving non-integer result? Trevor Woerner
@ 2015-09-07  7:21 ` Khem Raj
  2015-09-07  7:40   ` Trevor Woerner
  2015-09-11  1:37 ` Trevor Woerner
  1 sibling, 1 reply; 12+ messages in thread
From: Khem Raj @ 2015-09-07  7:21 UTC (permalink / raw)
  To: Trevor Woerner; +Cc: yocto@yoctoproject.org

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


> On Sep 6, 2015, at 7:40 PM, Trevor Woerner <twoerner@gmail.com> wrote:
> 
> I can't explain why, but when I build "core-image-minimal" for
> MACHINE=raspberrpi2 I get the following SD creation error:
> 

which shell do you use for /bin/sh

>    ERROR: Error: The image creation script
>    '/z/layerindex-master/raspi2/tmp/work/raspberrypi2-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.rpi-sdimg'
>    returned 2:
>    expr: non-integer argument
>    WARNING:
>    /z/layerindex-master/raspi2/tmp/work/raspberrypi2-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.rpi-sdimg:1
>    exit 2 from
>      ROOTFS_SIZE_ALIGNED=$(expr 12288.0 + 4096 - 1)
> 
> 
> Looking at meta-raspberrypi/classes/sdcard_image-rpi.bbclass, line 83:
> 
>    ROOTFS_SIZE_ALIGNED=$(expr ${ROOTFS_SIZE} +
> ${IMAGE_ROOTFS_ALIGNMENT} - 1)
> 
> which looks like the offending line. ROOTFS_SIZE seems to come from the
> line immediately above:
> 
>    ROOTFS_SIZE=`du -bks ${SDIMG_ROOTFS} | awk '{print $1}'`
> 
> But 'du' doesn't return non-integer values, does it? When I invoke the
> host's 'du' I get the correct value:
> 
>    du -bks
> /z/layerindex-master/raspi2/tmp/deploy/images/raspberrypi2/core-image-minimal-raspberrypi2-20150906234844.rootfs.ext3
> | awk '{print $1}'
>    12288
> 
> Does anyone have any idea why the ".0" is getting tacked on?
> 
> Best regards,
>    Trevor
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-07  7:21 ` Khem Raj
@ 2015-09-07  7:40   ` Trevor Woerner
  2015-09-08  5:56     ` Michael Fainstein
  0 siblings, 1 reply; 12+ messages in thread
From: Trevor Woerner @ 2015-09-07  7:40 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto@yoctoproject.org

On 09/07/15 03:21, Khem Raj wrote:
>> On Sep 6, 2015, at 7:40 PM, Trevor Woerner <twoerner@gmail.com> wrote:
>>
>> I can't explain why, but when I build "core-image-minimal" for
>> MACHINE=raspberrpi2 I get the following SD creation error:
>>
> which shell do you use for /bin/sh

$ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Nov 22  2014 /bin/sh -> bash

$ /bin/bash --version
GNU bash, version 4.2.53(1)-release (x86_64-suse-linux-gnu)
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-07  7:40   ` Trevor Woerner
@ 2015-09-08  5:56     ` Michael Fainstein
  2015-09-25 14:12       ` Dave Wolaver
  0 siblings, 1 reply; 12+ messages in thread
From: Michael Fainstein @ 2015-09-08  5:56 UTC (permalink / raw)
  To: Trevor Woerner, Khem Raj; +Cc: yocto@yoctoproject.org

I saw such behavior in 'expr' when I upgraded bash 3.1 - it started printing floats instead of integers.
You can solve it using awk's OFMT:  awk '{OFMT="%.0f";print $1}'

Michael

-----Original Message-----
From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org] On Behalf Of Trevor Woerner
Sent: Monday, September 07, 2015 10:40 AM
To: Khem Raj
Cc: yocto@yoctoproject.org
Subject: Re: [yocto] [meta-raspberrypi] du giving non-integer result?

On 09/07/15 03:21, Khem Raj wrote:
>> On Sep 6, 2015, at 7:40 PM, Trevor Woerner <twoerner@gmail.com> wrote:
>>
>> I can't explain why, but when I build "core-image-minimal" for
>> MACHINE=raspberrpi2 I get the following SD creation error:
>>
> which shell do you use for /bin/sh

$ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Nov 22  2014 /bin/sh -> bash

$ /bin/bash --version
GNU bash, version 4.2.53(1)-release (x86_64-suse-linux-gnu) Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
--
_______________________________________________
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-07  2:40 [meta-raspberrypi] du giving non-integer result? Trevor Woerner
  2015-09-07  7:21 ` Khem Raj
@ 2015-09-11  1:37 ` Trevor Woerner
  2015-09-17  4:14   ` Jonathan Liu
  1 sibling, 1 reply; 12+ messages in thread
From: Trevor Woerner @ 2015-09-11  1:37 UTC (permalink / raw)
  To: yocto@yoctoproject.org

From the feedback, it looks like I'm the only one seeing this issue.
That's okay, but I'll update this issue with new information in case
it's useful to others. Today I also had some other strangeness with the
"make sd card image" portion of a build, this time for cubietruck
(meta-sunxi):


    ERROR: Error: The image creation script
    '/z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg'
    returned 1:
    0+0 records in
    0+0 records out
    0 bytes (0 B) copied, 3.0606e-05 s, 0.0 kB/s
    expr: non-integer argument
    WARNING:
    /z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg:1
    exit 1 from
      parted -s
    /z/tmp/build/tmp/deploy/images/cubietruck/core-image-minimal-cubietruck-20150910182624.rootfs.sunxi-sdimg
    unit KiB mkpart primary ext2 $(expr ${BOOT_SPACE_ALIGNED} \+ 2048)
    $(expr ${BOOT_SPACE_ALIGNED} \+ 2048 \+ 10240.0)



Not only am I getting the floating point again, but it looks like
"BOOT_SPACE_ALIGNED" isn't getting expanded!

The frustrating part is that simply rerunning "bitbake
core-image-minimal" fixes the problem. The second time it completes
without error.


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-11  1:37 ` Trevor Woerner
@ 2015-09-17  4:14   ` Jonathan Liu
  2015-09-23 20:12     ` Andrei Gherzan
  0 siblings, 1 reply; 12+ messages in thread
From: Jonathan Liu @ 2015-09-17  4:14 UTC (permalink / raw)
  To: Trevor Woerner; +Cc: yocto@yoctoproject.org

On 11 September 2015 at 11:37, Trevor Woerner <twoerner@gmail.com> wrote:
> From the feedback, it looks like I'm the only one seeing this issue.
> That's okay, but I'll update this issue with new information in case
> it's useful to others. Today I also had some other strangeness with the
> "make sd card image" portion of a build, this time for cubietruck
> (meta-sunxi):
>
>
>     ERROR: Error: The image creation script
>     '/z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg'
>     returned 1:
>     0+0 records in
>     0+0 records out
>     0 bytes (0 B) copied, 3.0606e-05 s, 0.0 kB/s
>     expr: non-integer argument
>     WARNING:
>     /z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg:1
>     exit 1 from
>       parted -s
>     /z/tmp/build/tmp/deploy/images/cubietruck/core-image-minimal-cubietruck-20150910182624.rootfs.sunxi-sdimg
>     unit KiB mkpart primary ext2 $(expr ${BOOT_SPACE_ALIGNED} \+ 2048)
>     $(expr ${BOOT_SPACE_ALIGNED} \+ 2048 \+ 10240.0)
>
>
>
> Not only am I getting the floating point again, but it looks like
> "BOOT_SPACE_ALIGNED" isn't getting expanded!
>
> The frustrating part is that simply rerunning "bitbake
> core-image-minimal" fixes the problem. The second time it completes
> without error.
> --

I sent a patch to openembedded-core mailing list for ROOTFS_SIZE not
being an integer.
It seems http://git.openembedded.org/openembedded-core/commit/?id=af37bb8ae71c4f932e2126bb620b3fb2b11cc466
results in ROOTFS_SIZE now being set as a bitbake variable.
meta-raspberrypi will need to be updated to not have a conflicting
ROOTFS_SIZE variable as ${ROOTFS_SIZE} is being substituted by bitbake
instead of the shell there.

Regards,
Jonathan


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-17  4:14   ` Jonathan Liu
@ 2015-09-23 20:12     ` Andrei Gherzan
  2015-09-24  0:44       ` Trevor Woerner
  2015-09-24  7:36       ` Colin Helliwell
  0 siblings, 2 replies; 12+ messages in thread
From: Andrei Gherzan @ 2015-09-23 20:12 UTC (permalink / raw)
  To: Jonathan Liu; +Cc: yocto@yoctoproject.org

On Thu, Sep 17, 2015 at 02:14:21PM +1000, Jonathan Liu wrote:
> On 11 September 2015 at 11:37, Trevor Woerner <twoerner@gmail.com> wrote:
> > From the feedback, it looks like I'm the only one seeing this issue.
> > That's okay, but I'll update this issue with new information in case
> > it's useful to others. Today I also had some other strangeness with the
> > "make sd card image" portion of a build, this time for cubietruck
> > (meta-sunxi):
> >
> >
> >     ERROR: Error: The image creation script
> >     '/z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg'
> >     returned 1:
> >     0+0 records in
> >     0+0 records out
> >     0 bytes (0 B) copied, 3.0606e-05 s, 0.0 kB/s
> >     expr: non-integer argument
> >     WARNING:
> >     /z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg:1
> >     exit 1 from
> >       parted -s
> >     /z/tmp/build/tmp/deploy/images/cubietruck/core-image-minimal-cubietruck-20150910182624.rootfs.sunxi-sdimg
> >     unit KiB mkpart primary ext2 $(expr ${BOOT_SPACE_ALIGNED} \+ 2048)
> >     $(expr ${BOOT_SPACE_ALIGNED} \+ 2048 \+ 10240.0)
> >
> >
> >
> > Not only am I getting the floating point again, but it looks like
> > "BOOT_SPACE_ALIGNED" isn't getting expanded!
> >
> > The frustrating part is that simply rerunning "bitbake
> > core-image-minimal" fixes the problem. The second time it completes
> > without error.
> > --
>
> I sent a patch to openembedded-core mailing list for ROOTFS_SIZE not
> being an integer.
> It seems http://git.openembedded.org/openembedded-core/commit/?id=af37bb8ae71c4f932e2126bb620b3fb2b11cc466
> results in ROOTFS_SIZE now being set as a bitbake variable.
> meta-raspberrypi will need to be updated to not have a conflicting
> ROOTFS_SIZE variable as ${ROOTFS_SIZE} is being substituted by bitbake
> instead of the shell there.

Hi guys,

I'm testing and reviewing this as we speak. As well, it would be a good idea to drop
the sd card generation class for good and replace it completely by wic support.

Something to be done. Wnat to pick this up? I know that there were people
around testing wic and we had configuration too.

Regards,

--
Andrei Gherzan


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-23 20:12     ` Andrei Gherzan
@ 2015-09-24  0:44       ` Trevor Woerner
  2015-09-24  7:36       ` Colin Helliwell
  1 sibling, 0 replies; 12+ messages in thread
From: Trevor Woerner @ 2015-09-24  0:44 UTC (permalink / raw)
  To: Andrei Gherzan, Jonathan Liu; +Cc: yocto@yoctoproject.org

On 09/23/15 16:12, Andrei Gherzan wrote:
> On Thu, Sep 17, 2015 at 02:14:21PM +1000, Jonathan Liu wrote:
>> On 11 September 2015 at 11:37, Trevor Woerner <twoerner@gmail.com> wrote:
>>> From the feedback, it looks like I'm the only one seeing this issue.
>>> That's okay, but I'll update this issue with new information in case
>>> it's useful to others. Today I also had some other strangeness with the
>>> "make sd card image" portion of a build, this time for cubietruck
>>> (meta-sunxi):
>>>
>>>
>>>     ERROR: Error: The image creation script
>>>     '/z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg'
>>>     returned 1:
>>>     0+0 records in
>>>     0+0 records out
>>>     0 bytes (0 B) copied, 3.0606e-05 s, 0.0 kB/s
>>>     expr: non-integer argument
>>>     WARNING:
>>>     /z/tmp/build/tmp/work/cubietruck-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/create_image.sunxi-sdimg:1
>>>     exit 1 from
>>>       parted -s
>>>     /z/tmp/build/tmp/deploy/images/cubietruck/core-image-minimal-cubietruck-20150910182624.rootfs.sunxi-sdimg
>>>     unit KiB mkpart primary ext2 $(expr ${BOOT_SPACE_ALIGNED} \+ 2048)
>>>     $(expr ${BOOT_SPACE_ALIGNED} \+ 2048 \+ 10240.0)
>>>
>>>
>>>
>>> Not only am I getting the floating point again, but it looks like
>>> "BOOT_SPACE_ALIGNED" isn't getting expanded!
>>>
>>> The frustrating part is that simply rerunning "bitbake
>>> core-image-minimal" fixes the problem. The second time it completes
>>> without error.
>>> --
>> I sent a patch to openembedded-core mailing list for ROOTFS_SIZE not
>> being an integer.
>> It seems http://git.openembedded.org/openembedded-core/commit/?id=af37bb8ae71c4f932e2126bb620b3fb2b11cc466
>> results in ROOTFS_SIZE now being set as a bitbake variable.
>> meta-raspberrypi will need to be updated to not have a conflicting
>> ROOTFS_SIZE variable as ${ROOTFS_SIZE} is being substituted by bitbake
>> instead of the shell there.
> Hi guys,
>
> I'm testing and reviewing this as we speak. As well, it would be a good idea to drop
> the sd card generation class for good and replace it completely by wic support.
>
> Something to be done. Wnat to pick this up? I know that there were people
> around testing wic and we had configuration too.

Jonathan's patch does work for me, and it was premature of me to put
[meta-raspberrypi] in the subject line since I saw this same failure on
other BSPs (and other people reported even more failures on other BSPs).
But it wouldn't hurt to move to wic either. It's probably about time I
started using it anyway :-)


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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-23 20:12     ` Andrei Gherzan
  2015-09-24  0:44       ` Trevor Woerner
@ 2015-09-24  7:36       ` Colin Helliwell
  2015-10-21 12:14         ` Andrei Gherzan
  1 sibling, 1 reply; 12+ messages in thread
From: Colin Helliwell @ 2015-09-24  7:36 UTC (permalink / raw)
  To: 'Andrei Gherzan', 'Jonathan Liu'; +Cc: yocto

On my 'to do' list is pulling together the fs partitions into a single SD
card image file that can be copied in-one using a Windows tool (such as
Win32 Disk Imager) - primarily because my build machine is off-site. 
I've seen a few recipes along those lines (I'm on a BeagleBone), but perhaps
wic is a better way to go. Can wic create a single card image?

-----Original Message-----
From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org]
On Behalf Of Andrei Gherzan
Sent: 23 September 2015 21:13
To: Jonathan Liu
Cc: yocto@yoctoproject.org
Subject: Re: [yocto] [meta-raspberrypi] du giving non-integer result?

....

Hi guys,

I'm testing and reviewing this as we speak. As well, it would be a good idea
to drop the sd card generation class for good and replace it completely by
wic support.

Something to be done. Wnat to pick this up? I know that there were people
around testing wic and we had configuration too.

Regards,

--
Andrei Gherzan
--




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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-08  5:56     ` Michael Fainstein
@ 2015-09-25 14:12       ` Dave Wolaver
  2015-09-25 15:00         ` Daniel.
  0 siblings, 1 reply; 12+ messages in thread
From: Dave Wolaver @ 2015-09-25 14:12 UTC (permalink / raw)
  To: yocto

Michael Fainstein <Michael.Fainstein@...> writes:

> 
> I saw such behavior in 'expr' when I upgraded bash 3.1 - it started 
printing floats instead of integers.
> You can solve it using awk's OFMT:  awk '{OFMT="%.0f";print $1}'
> 
> Michael
> 


This worked for me, but it needed one small tweak... Need to add +0 so 
that awk actually applies the format.

You can solve it using awk's OFMT:  awk '{OFMT="%.0f";print $1+0}'

Thanks Michael!





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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-25 14:12       ` Dave Wolaver
@ 2015-09-25 15:00         ` Daniel.
  0 siblings, 0 replies; 12+ messages in thread
From: Daniel. @ 2015-09-25 15:00 UTC (permalink / raw)
  To: Dave Wolaver; +Cc: yocto@yoctoproject.org

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

Why not printf?

[geckos@csi24 ~]$ echo 1.0 | awk '{ printf("%d\n", $1); }'
1

Cheers,
- dhs

2015-09-25 11:12 GMT-03:00 Dave Wolaver <davewolaver@gmail.com>:

> Michael Fainstein <Michael.Fainstein@...> writes:
>
> >
> > I saw such behavior in 'expr' when I upgraded bash 3.1 - it started
> printing floats instead of integers.
> > You can solve it using awk's OFMT:  awk '{OFMT="%.0f";print $1}'
> >
> > Michael
> >
>
>
> This worked for me, but it needed one small tweak... Need to add +0 so
> that awk actually applies the format.
>
> You can solve it using awk's OFMT:  awk '{OFMT="%.0f";print $1+0}'
>
> Thanks Michael!
>
>
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>



-- 
*"Do or do not. There is no try"*
  *Yoda Master*

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

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

* Re: [meta-raspberrypi] du giving non-integer result?
  2015-09-24  7:36       ` Colin Helliwell
@ 2015-10-21 12:14         ` Andrei Gherzan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrei Gherzan @ 2015-10-21 12:14 UTC (permalink / raw)
  To: Colin Helliwell; +Cc: yocto

On Thu, Sep 24, 2015 at 08:36:34AM +0100, Colin Helliwell wrote:
> On my 'to do' list is pulling together the fs partitions into a single SD
> card image file that can be copied in-one using a Windows tool (such as
> Win32 Disk Imager) - primarily because my build machine is off-site.
> I've seen a few recipes along those lines (I'm on a BeagleBone), but perhaps
> wic is a better way to go. Can wic create a single card image?
>

Yes it can.
http://www.yoctoproject.org/docs/1.8/mega-manual/mega-manual.html#creating-partitioned-images

> -----Original Message-----
> From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org]
> On Behalf Of Andrei Gherzan
> Sent: 23 September 2015 21:13
> To: Jonathan Liu
> Cc: yocto@yoctoproject.org
> Subject: Re: [yocto] [meta-raspberrypi] du giving non-integer result?
>
> ....
>
> Hi guys,
>
> I'm testing and reviewing this as we speak. As well, it would be a good idea
> to drop the sd card generation class for good and replace it completely by
> wic support.
>
> Something to be done. Wnat to pick this up? I know that there were people
> around testing wic and we had configuration too.
>
> Regards,
>
> --
> Andrei Gherzan
> --
>
>

--
Andrei Gherzan


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

end of thread, other threads:[~2015-10-21 12:14 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-07  2:40 [meta-raspberrypi] du giving non-integer result? Trevor Woerner
2015-09-07  7:21 ` Khem Raj
2015-09-07  7:40   ` Trevor Woerner
2015-09-08  5:56     ` Michael Fainstein
2015-09-25 14:12       ` Dave Wolaver
2015-09-25 15:00         ` Daniel.
2015-09-11  1:37 ` Trevor Woerner
2015-09-17  4:14   ` Jonathan Liu
2015-09-23 20:12     ` Andrei Gherzan
2015-09-24  0:44       ` Trevor Woerner
2015-09-24  7:36       ` Colin Helliwell
2015-10-21 12:14         ` Andrei Gherzan

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.