* [PATCH] Add DL_DIR and SSTATE_DIR to toasterconf
@ 2016-04-06 17:00 Michael Wood
2016-04-06 17:00 ` [PATCH] toaster: add DL_DIR and SSTATE_DIR to oe toasterconf Michael Wood
0 siblings, 1 reply; 4+ messages in thread
From: Michael Wood @ 2016-04-06 17:00 UTC (permalink / raw)
To: openembedded-core
Add the DL_DIR and SSTATE_DIR to the toasterconf with defaults set
We now support per project sharing of the DL_DIR and SSTATE_DIR
in toaster.
Ed Bartosh (1):
toaster: add DL_DIR and SSTATE_DIR to oe toasterconf
meta/conf/toasterconf.json | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
--
2.1.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] toaster: add DL_DIR and SSTATE_DIR to oe toasterconf
2016-04-06 17:00 [PATCH] Add DL_DIR and SSTATE_DIR to toasterconf Michael Wood
@ 2016-04-06 17:00 ` Michael Wood
2016-04-06 20:34 ` Randy Witt
0 siblings, 1 reply; 4+ messages in thread
From: Michael Wood @ 2016-04-06 17:00 UTC (permalink / raw)
To: openembedded-core
From: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
---
meta/conf/toasterconf.json | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf.json
index 1987793..bbd40e9 100644
--- a/meta/conf/toasterconf.json
+++ b/meta/conf/toasterconf.json
@@ -2,9 +2,11 @@
"config": {
"MACHINE" : "qemux86",
"DISTRO" : "poky",
+ "DL_DIR" : "${TOPDIR}/../downloads",
"IMAGE_FSTYPES": "ext3 jffs2 tar.bz2",
"IMAGE_INSTALL_append": "",
- "PACKAGE_CLASSES": "package_rpm"
+ "PACKAGE_CLASSES": "package_rpm",
+ "SSTATE_DIR" : "${TOPDIR}/../sstate-cache"
},
"layersources": [
{
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] toaster: add DL_DIR and SSTATE_DIR to oe toasterconf
2016-04-06 17:00 ` [PATCH] toaster: add DL_DIR and SSTATE_DIR to oe toasterconf Michael Wood
@ 2016-04-06 20:34 ` Randy Witt
2016-04-07 10:05 ` Michael Wood
0 siblings, 1 reply; 4+ messages in thread
From: Randy Witt @ 2016-04-06 20:34 UTC (permalink / raw)
To: Michael Wood, openembedded-core
On 04/06/2016 10:00 AM, Michael Wood wrote:
> From: Ed Bartosh <ed.bartosh@linux.intel.com>
Shouldn't the message from the cover letter actually be the commit message here,
rather than an empty message?
>
> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
> ---
> meta/conf/toasterconf.json | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf.json
> index 1987793..bbd40e9 100644
> --- a/meta/conf/toasterconf.json
> +++ b/meta/conf/toasterconf.json
> @@ -2,9 +2,11 @@
> "config": {
> "MACHINE" : "qemux86",
> "DISTRO" : "poky",
> + "DL_DIR" : "${TOPDIR}/../downloads",
> "IMAGE_FSTYPES": "ext3 jffs2 tar.bz2",
> "IMAGE_INSTALL_append": "",
> - "PACKAGE_CLASSES": "package_rpm"
> + "PACKAGE_CLASSES": "package_rpm",
> + "SSTATE_DIR" : "${TOPDIR}/../sstate-cache"
> },
> "layersources": [
> {
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] toaster: add DL_DIR and SSTATE_DIR to oe toasterconf
2016-04-06 20:34 ` Randy Witt
@ 2016-04-07 10:05 ` Michael Wood
0 siblings, 0 replies; 4+ messages in thread
From: Michael Wood @ 2016-04-07 10:05 UTC (permalink / raw)
To: Randy Witt, openembedded-core
On 06/04/16 21:34, Randy Witt wrote:
> On 04/06/2016 10:00 AM, Michael Wood wrote:
>> From: Ed Bartosh <ed.bartosh@linux.intel.com>
>
> Shouldn't the message from the cover letter actually be the commit
> message here, rather than an empty message?
Sure, I can easily amend Ed's commit message to include this if you'd
like, the reason I sent a cover letter was just to let people know who
aren't following the development of Toaster what this was about.
>
>>
>> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
>> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
>> ---
>> meta/conf/toasterconf.json | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf.json
>> index 1987793..bbd40e9 100644
>> --- a/meta/conf/toasterconf.json
>> +++ b/meta/conf/toasterconf.json
>> @@ -2,9 +2,11 @@
>> "config": {
>> "MACHINE" : "qemux86",
>> "DISTRO" : "poky",
>> + "DL_DIR" : "${TOPDIR}/../downloads",
>> "IMAGE_FSTYPES": "ext3 jffs2 tar.bz2",
>> "IMAGE_INSTALL_append": "",
>> - "PACKAGE_CLASSES": "package_rpm"
>> + "PACKAGE_CLASSES": "package_rpm",
>> + "SSTATE_DIR" : "${TOPDIR}/../sstate-cache"
>> },
>> "layersources": [
>> {
>>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-04-07 10:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-06 17:00 [PATCH] Add DL_DIR and SSTATE_DIR to toasterconf Michael Wood
2016-04-06 17:00 ` [PATCH] toaster: add DL_DIR and SSTATE_DIR to oe toasterconf Michael Wood
2016-04-06 20:34 ` Randy Witt
2016-04-07 10:05 ` Michael Wood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox