* [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet
@ 2019-12-16 17:41 Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 2/3] README: fix list address Ross Burton
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ross Burton @ 2019-12-16 17:41 UTC (permalink / raw)
To: yocto
meta-intel BSPs are not compatible with the qemu BSPs currently, so don't
attempt to execute testimage.
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
config.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.json b/config.json
index 5730f85..79695c2 100644
--- a/config.json
+++ b/config.json
@@ -387,7 +387,7 @@
"NEEDREPOS" : ["poky", "meta-intel"],
"ADDLAYER" : ["${BUILDDIR}/../meta-intel"],
"MACHINE" : "intel-corei7-64",
- "TEMPLATE" : "arch-hw-qemu"
+ "TEMPLATE" : "arch-hw"
},
"genericx86-64-alt" : {
"MACHINE" : "genericx86-64",
--
2.20.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH yocto-autobuilder-helper v2 2/3] README: fix list address
2019-12-16 17:41 [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Ross Burton
@ 2019-12-16 17:41 ` Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 3/3] README: add git-config commands to setup the mailer Ross Burton
2020-01-15 6:50 ` [yocto] [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Anuj Mittal
2 siblings, 0 replies; 5+ messages in thread
From: Ross Burton @ 2019-12-16 17:41 UTC (permalink / raw)
To: yocto
---
README | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README b/README
index 2747510..4f2a7f1 100644
--- a/README
+++ b/README
@@ -28,5 +28,5 @@ Authors:
Contributions:
-Patches for this code should be sent to the yocto@yoctoproject.org mailing list
+Patches for this code should be sent to the yocto@lists.yoctoproject.org mailing list
with [yocto-autobuilder-helper] in the subject.
--
2.20.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH yocto-autobuilder-helper v2 3/3] README: add git-config commands to setup the mailer
2019-12-16 17:41 [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 2/3] README: fix list address Ross Burton
@ 2019-12-16 17:41 ` Ross Burton
2020-01-15 6:50 ` [yocto] [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Anuj Mittal
2 siblings, 0 replies; 5+ messages in thread
From: Ross Burton @ 2019-12-16 17:41 UTC (permalink / raw)
To: yocto
---
README | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/README b/README
index 4f2a7f1..249feb2 100644
--- a/README
+++ b/README
@@ -29,4 +29,8 @@ Authors:
Contributions:
Patches for this code should be sent to the yocto@lists.yoctoproject.org mailing list
-with [yocto-autobuilder-helper] in the subject.
+with [yocto-autobuilder-helper] in the subject. This can be configured automatically
+with the following commands:
+
+ git config --local --add format.subjectprefix 'PATCH yocto-autobuilder-helper'
+ git config --local --add sendemail.to yocto@lists.yoctoproject.org
--
2.20.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [yocto] [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet
2019-12-16 17:41 [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 2/3] README: fix list address Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 3/3] README: add git-config commands to setup the mailer Ross Burton
@ 2020-01-15 6:50 ` Anuj Mittal
2020-01-15 10:55 ` Richard Purdie
2 siblings, 1 reply; 5+ messages in thread
From: Anuj Mittal @ 2020-01-15 6:50 UTC (permalink / raw)
To: richard.purdie@linuxfoundation.org, yocto@yoctoproject.org,
Burton, Ross
Can this be merged in zeus/warrior too please?
Thanks,
Anuj
On Mon, 2019-12-16 at 17:41 +0000, Ross Burton wrote:
> meta-intel BSPs are not compatible with the qemu BSPs currently, so
> don't
> attempt to execute testimage.
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
> config.json | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/config.json b/config.json
> index 5730f85..79695c2 100644
> --- a/config.json
> +++ b/config.json
> @@ -387,7 +387,7 @@
> "NEEDREPOS" : ["poky", "meta-intel"],
> "ADDLAYER" : ["${BUILDDIR}/../meta-intel"],
> "MACHINE" : "intel-corei7-64",
> - "TEMPLATE" : "arch-hw-qemu"
> + "TEMPLATE" : "arch-hw"
> },
> "genericx86-64-alt" : {
> "MACHINE" : "genericx86-64",
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [yocto] [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet
2020-01-15 6:50 ` [yocto] [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Anuj Mittal
@ 2020-01-15 10:55 ` Richard Purdie
0 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2020-01-15 10:55 UTC (permalink / raw)
To: Mittal, Anuj, yocto@yoctoproject.org, Burton, Ross
On Wed, 2020-01-15 at 06:50 +0000, Mittal, Anuj wrote:
> Can this be merged in zeus/warrior too please?
I've merged to zeus but this code isn't in warrior at all...
Cheers,
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-01-15 10:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-16 17:41 [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 2/3] README: fix list address Ross Burton
2019-12-16 17:41 ` [PATCH yocto-autobuilder-helper v2 3/3] README: add git-config commands to setup the mailer Ross Burton
2020-01-15 6:50 ` [yocto] [PATCH yocto-autobuilder-helper v2 1/3] config: don't run meta-intel in qemu yet Anuj Mittal
2020-01-15 10:55 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox