* [PATCH 0/1] core-image-sato.bb: increase free space size
@ 2013-04-02 2:30 Qi.Chen
2013-04-02 2:30 ` [PATCH 1/1] " Qi.Chen
0 siblings, 1 reply; 8+ messages in thread
From: Qi.Chen @ 2013-04-02 2:30 UTC (permalink / raw)
To: openembedded-core; +Cc: qingtao.cao
From: Chen Qi <Qi.Chen@windriver.com>
The following changes since commit 3c5f4d54d01887a117bf659fc9af6b2b892c2b08:
separatebuilddir.inc: mxsldr should never have been added to this list, remove (2013-03-24 14:03:19 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib ChenQi/sato-size
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/sato-size
Chen Qi (1):
core-image-sato.bb: increase free space size
meta/recipes-sato/images/core-image-sato.bb | 3 +++
1 file changed, 3 insertions(+)
--
1.7.9.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/1] core-image-sato.bb: increase free space size
2013-04-02 2:30 [PATCH 0/1] core-image-sato.bb: increase free space size Qi.Chen
@ 2013-04-02 2:30 ` Qi.Chen
2013-04-02 2:59 ` Khem Raj
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Qi.Chen @ 2013-04-02 2:30 UTC (permalink / raw)
To: openembedded-core; +Cc: qingtao.cao
From: Chen Qi <Qi.Chen@windriver.com>
Sato images, by default, have about 100M free space. This is not enough
and it blocks automatic testing.
This patch fixes this problem by overriding the IMAGE_OVERHEAD_FACTOR
in the sato image recipe.
[YOCTO #4109]
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
meta/recipes-sato/images/core-image-sato.bb | 3 +++
1 file changed, 3 insertions(+)
diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb
index e3246d2..8df1d08 100644
--- a/meta/recipes-sato/images/core-image-sato.bb
+++ b/meta/recipes-sato/images/core-image-sato.bb
@@ -9,3 +9,6 @@ LICENSE = "MIT"
inherit core-image
IMAGE_INSTALL += "packagegroup-core-x11-sato-games"
+
+# Override IMAGE_OVERHEAD_FACTOR to increase the free space size on sato images.
+IMAGE_OVERHEAD_FACTOR = "2.0"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 1/1] core-image-sato.bb: increase free space size
2013-04-02 2:30 ` [PATCH 1/1] " Qi.Chen
@ 2013-04-02 2:59 ` Khem Raj
2013-04-02 3:04 ` ChenQi
2013-04-02 10:15 ` Gary Thomas
2013-04-03 10:38 ` Burton, Ross
2 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2013-04-02 2:59 UTC (permalink / raw)
To: Qi.Chen; +Cc: qingtao.cao, openembedded-core
On Apr 1, 2013, at 7:30 PM, Qi.Chen@windriver.com wrote:
> +
> +# Override IMAGE_OVERHEAD_FACTOR to increase the free space size on sato images.
> +IMAGE_OVERHEAD_FACTOR = "2.0"
what is the size of image before and after ?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] core-image-sato.bb: increase free space size
2013-04-02 2:30 ` [PATCH 1/1] " Qi.Chen
2013-04-02 2:59 ` Khem Raj
@ 2013-04-02 10:15 ` Gary Thomas
2013-04-03 6:16 ` ChenQi
2013-04-03 10:38 ` Burton, Ross
2 siblings, 1 reply; 8+ messages in thread
From: Gary Thomas @ 2013-04-02 10:15 UTC (permalink / raw)
To: openembedded-core
On 2013-04-01 20:30, Qi.Chen@windriver.com wrote:
> From: Chen Qi <Qi.Chen@windriver.com>
>
> Sato images, by default, have about 100M free space. This is not enough
> and it blocks automatic testing.
>
> This patch fixes this problem by overriding the IMAGE_OVERHEAD_FACTOR
> in the sato image recipe.
>
> [YOCTO #4109]
>
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> meta/recipes-sato/images/core-image-sato.bb | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb
> index e3246d2..8df1d08 100644
> --- a/meta/recipes-sato/images/core-image-sato.bb
> +++ b/meta/recipes-sato/images/core-image-sato.bb
> @@ -9,3 +9,6 @@ LICENSE = "MIT"
> inherit core-image
>
> IMAGE_INSTALL += "packagegroup-core-x11-sato-games"
> +
> +# Override IMAGE_OVERHEAD_FACTOR to increase the free space size on sato images.
> +IMAGE_OVERHEAD_FACTOR = "2.0"
>
You should make this overridable by the user:
IMAGE_OVERHEAD_FACTOR ?= "2.0"
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] core-image-sato.bb: increase free space size
2013-04-02 10:15 ` Gary Thomas
@ 2013-04-03 6:16 ` ChenQi
0 siblings, 0 replies; 8+ messages in thread
From: ChenQi @ 2013-04-03 6:16 UTC (permalink / raw)
To: openembedded-core
On 04/02/2013 06:15 PM, Gary Thomas wrote:
> On 2013-04-01 20:30, Qi.Chen@windriver.com wrote:
>> From: Chen Qi <Qi.Chen@windriver.com>
>>
>> Sato images, by default, have about 100M free space. This is not enough
>> and it blocks automatic testing.
>>
>> This patch fixes this problem by overriding the IMAGE_OVERHEAD_FACTOR
>> in the sato image recipe.
>>
>> [YOCTO #4109]
>>
>> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>> ---
>> meta/recipes-sato/images/core-image-sato.bb | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/meta/recipes-sato/images/core-image-sato.bb
>> b/meta/recipes-sato/images/core-image-sato.bb
>> index e3246d2..8df1d08 100644
>> --- a/meta/recipes-sato/images/core-image-sato.bb
>> +++ b/meta/recipes-sato/images/core-image-sato.bb
>> @@ -9,3 +9,6 @@ LICENSE = "MIT"
>> inherit core-image
>>
>> IMAGE_INSTALL += "packagegroup-core-x11-sato-games"
>> +
>> +# Override IMAGE_OVERHEAD_FACTOR to increase the free space size on
>> sato images.
>> +IMAGE_OVERHEAD_FACTOR = "2.0"
>>
>
> You should make this overridable by the user:
> IMAGE_OVERHEAD_FACTOR ?= "2.0"
>
Yes. You're right.
And we can use "??=" in bitbake.conf.
A new patch set has been sent out.
Thanks,
Chen Qi
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] core-image-sato.bb: increase free space size
2013-04-02 2:30 ` [PATCH 1/1] " Qi.Chen
2013-04-02 2:59 ` Khem Raj
2013-04-02 10:15 ` Gary Thomas
@ 2013-04-03 10:38 ` Burton, Ross
2013-04-03 11:59 ` Otavio Salvador
2 siblings, 1 reply; 8+ messages in thread
From: Burton, Ross @ 2013-04-03 10:38 UTC (permalink / raw)
To: Qi.Chen; +Cc: qingtao.cao, openembedded-core
On 2 April 2013 03:30, <Qi.Chen@windriver.com> wrote:
> From: Chen Qi <Qi.Chen@windriver.com>
>
> Sato images, by default, have about 100M free space. This is not enough
> and it blocks automatic testing.
>
> This patch fixes this problem by overriding the IMAGE_OVERHEAD_FACTOR
> in the sato image recipe.
If a particular build needs more disk space, you can also use
IMAGE_ROOTFS_EXTRA_SPACE in local.conf, i.e.:
IMAGE_ROOTFS_EXTRA_SPACE = "524288"
(that's add 500MB)
Ross
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] core-image-sato.bb: increase free space size
2013-04-03 10:38 ` Burton, Ross
@ 2013-04-03 11:59 ` Otavio Salvador
0 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2013-04-03 11:59 UTC (permalink / raw)
To: Burton, Ross; +Cc: qingtao.cao, Patches and discussions about the oe-core layer
On Wed, Apr 3, 2013 at 7:38 AM, Burton, Ross <ross.burton@intel.com> wrote:
> On 2 April 2013 03:30, <Qi.Chen@windriver.com> wrote:
>> From: Chen Qi <Qi.Chen@windriver.com>
>>
>> Sato images, by default, have about 100M free space. This is not enough
>> and it blocks automatic testing.
>>
>> This patch fixes this problem by overriding the IMAGE_OVERHEAD_FACTOR
>> in the sato image recipe.
>
> If a particular build needs more disk space, you can also use
> IMAGE_ROOTFS_EXTRA_SPACE in local.conf, i.e.:
>
> IMAGE_ROOTFS_EXTRA_SPACE = "524288"
>
> (that's add 500MB)
I think Chen wants a more permanent solution so automatic testing can
work out of box. Maybe a fixed extra size would be better for this
case but needs to be done in the image in either case.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-04-03 12:17 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-02 2:30 [PATCH 0/1] core-image-sato.bb: increase free space size Qi.Chen
2013-04-02 2:30 ` [PATCH 1/1] " Qi.Chen
2013-04-02 2:59 ` Khem Raj
2013-04-02 3:04 ` ChenQi
2013-04-02 10:15 ` Gary Thomas
2013-04-03 6:16 ` ChenQi
2013-04-03 10:38 ` Burton, Ross
2013-04-03 11:59 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox