meta-arm.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] more override syntax fixes and cleanups
@ 2021-08-06 21:36 Jon Mason
  2021-08-06 21:36 ` [PATCH 1/7] gem5: Fix xen override syntax bug Jon Mason
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

A few patches to fix things missed in the previous series, and a few
fix-ups needed to get meta-arm master branch CI back in the green.

Jon Mason (7):
  gem5: Fix xen override syntax bug
  CI: fix check-layers
  CI: use meta-virtualization master-next branch
  juno: temporarily pin 5.4 kernel version
  corstone500: clean-up kernel entries
  CI: rename meta-python to meta-openembedded
  CI: move xen specific changes out of gem5-arm64-xen.yml

 .gitlab-ci.yml                                | 22 +++++++++------
 ci/check-layers.py                            |  1 +
 ci/gem5-arm64-xen.yml                         | 28 -------------------
 ci/gem5-arm64.yml                             |  6 +---
 ci/meta-arm-autonomy.yml                      | 14 ++--------
 ci/{meta-python.yml => meta-openembedded.yml} |  2 ++
 ci/meta-virtualization.yml                    |  9 ++++++
 ci/meta-zephyr.yml                            |  2 +-
 ci/musca-s1.yml                               |  2 +-
 ci/qemuarm64.yml                              |  6 ++++
 ci/xen.yml                                    | 11 ++++++++
 meta-arm-bsp/conf/machine/corstone500.conf    |  5 +---
 .../linux/linux-arm-platforms.inc             |  7 +++++
 .../boot-wrapper-aarch64_%.bbappend           |  2 +-
 14 files changed, 58 insertions(+), 59 deletions(-)
 delete mode 100644 ci/gem5-arm64-xen.yml
 rename ci/{meta-python.yml => meta-openembedded.yml} (76%)
 create mode 100644 ci/meta-virtualization.yml
 create mode 100644 ci/qemuarm64.yml
 create mode 100644 ci/xen.yml

-- 
2.20.1


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

* [PATCH 1/7] gem5: Fix xen override syntax bug
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  2021-08-06 21:36 ` [PATCH 2/7] CI: fix check-layers Jon Mason
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 .../boot-wrapper-aaarch64/boot-wrapper-aarch64_%.bbappend       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gem5/dynamic-layers/meta-virtualization/recipes-bsp/boot-wrapper-aaarch64/boot-wrapper-aarch64_%.bbappend b/meta-gem5/dynamic-layers/meta-virtualization/recipes-bsp/boot-wrapper-aaarch64/boot-wrapper-aarch64_%.bbappend
index 0cd28c266c1e..e4b97e948f3e 100644
--- a/meta-gem5/dynamic-layers/meta-virtualization/recipes-bsp/boot-wrapper-aaarch64/boot-wrapper-aarch64_%.bbappend
+++ b/meta-gem5/dynamic-layers/meta-virtualization/recipes-bsp/boot-wrapper-aaarch64/boot-wrapper-aarch64_%.bbappend
@@ -16,7 +16,7 @@ BOOT_WRAPPER_AARCH64_XEN_CMDLINE:gem5-arm64 = "noreboot dom0_mem=256M console=dt
 BOOT_WRAPPER_AARCH64_CMDLINE_xen:gem5-arm64 = "console=hvc0 root=/dev/vda rw"
 
 # Image generated by boot wrapper when Xen is present
-BOOT_WRAPPER_AARCH64_IMAGE_xen ?= "xen-system.axf"
+BOOT_WRAPPER_AARCH64_IMAGE:xen ?= "xen-system.axf"
 
 EXTRA_OECONF:append:xen = " \
 --with-xen=${WORKDIR}/kernel/arch/arm64/boot/Image \
-- 
2.20.1


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

* [PATCH 2/7] CI: fix check-layers
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
  2021-08-06 21:36 ` [PATCH 1/7] gem5: Fix xen override syntax bug Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  2021-08-06 21:36 ` [PATCH 3/7] CI: use meta-virtualization master-next branch Jon Mason
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 ci/check-layers.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/check-layers.py b/ci/check-layers.py
index 7b607ae3bb5e..2aa7d9bea21f 100755
--- a/ci/check-layers.py
+++ b/ci/check-layers.py
@@ -28,6 +28,7 @@ if __name__ == "__main__":
     cli.extend([args.metaarm / layer for layer in layers])
     cli.append("--dependency")
     cli.extend([args.others / layer for layer in dependencies])
+    cli.append("--no-auto-dependency")
 
     passed = 0
     process = subprocess.Popen(cli, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True)
-- 
2.20.1


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

* [PATCH 3/7] CI: use meta-virtualization master-next branch
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
  2021-08-06 21:36 ` [PATCH 1/7] gem5: Fix xen override syntax bug Jon Mason
  2021-08-06 21:36 ` [PATCH 2/7] CI: fix check-layers Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  2021-08-06 21:36 ` [PATCH 4/7] juno: temporarily pin 5.4 kernel version Jon Mason
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Use master-next for meta-virt while waiting for the syntax change
patches to make it into master

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 ci/gem5-arm64-xen.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ci/gem5-arm64-xen.yml b/ci/gem5-arm64-xen.yml
index e2882441e109..4a6fb3b1dec0 100644
--- a/ci/gem5-arm64-xen.yml
+++ b/ci/gem5-arm64-xen.yml
@@ -17,6 +17,8 @@ repos:
       meta-networking:
   meta-virtualization:
     url: git://git.yoctoproject.org/meta-virtualization
+    #FIXME - remove after master branch has overrides syntax conversion patch
+    refspec: master-next
 
 machine: gem5-arm64
 
-- 
2.20.1


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

* [PATCH 4/7] juno: temporarily pin 5.4 kernel version
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
                   ` (2 preceding siblings ...)
  2021-08-06 21:36 ` [PATCH 3/7] CI: use meta-virtualization master-next branch Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  2021-08-06 21:36 ` [PATCH 5/7] corstone500: clean-up kernel entries Jon Mason
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Recent changes in the 5.4 kernel are preventing the juno patches from
applying.  Temporarily pin the kernel to the version prior to this until
the patches can be rebased.

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc b/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc
index 5c547b7e2854..e66fd5fba1ff 100644
--- a/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc
+++ b/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc
@@ -48,6 +48,10 @@ COMPATIBLE_MACHINE:juno = "juno"
 KMACHINE:juno = "juno"
 KBUILD_DEFCONFIG:juno = "defconfig"
 KCONFIG_MODE:juno = "--alldefconfig"
+#FIXME - temporarily pin kernel version to allow for juno patches to apply
+KBRANCH:juno = "v5.4/standard/base"
+KERNEL_VERSION_SANITY_SKIP:juno = "1"
+SRCREV_machine:juno = "dd8a64a523fb714a98328441e0de72cde115a6fc"
 FILESEXTRAPATHS:prepend:juno := "${ARMBSPFILESPATHS}"
 SRC_URI:append:juno = " \
     file://0001-mailbox-add-support-for-doorbell-signal-mode-control.patch \
-- 
2.20.1


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

* [PATCH 5/7] corstone500: clean-up kernel entries
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
                   ` (3 preceding siblings ...)
  2021-08-06 21:36 ` [PATCH 4/7] juno: temporarily pin 5.4 kernel version Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  2021-08-06 21:36 ` [PATCH 6/7] CI: rename meta-python to meta-openembedded Jon Mason
  2021-08-06 21:36 ` [PATCH 7/7] CI: move xen specific changes out of gem5-arm64-xen.yml Jon Mason
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Correct an override syntax issue with the kernel and move the relevant
kernel entries from the machine config to the kernel include file to
match the other machines in meta-arm-bsp

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 meta-arm-bsp/conf/machine/corstone500.conf                | 5 +----
 meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc | 3 +++
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-arm-bsp/conf/machine/corstone500.conf b/meta-arm-bsp/conf/machine/corstone500.conf
index b1191377d19c..401c74660575 100644
--- a/meta-arm-bsp/conf/machine/corstone500.conf
+++ b/meta-arm-bsp/conf/machine/corstone500.conf
@@ -4,7 +4,6 @@
 
 require conf/machine/include/tune-cortexa5.inc
 
-#
 # Corstone-500 is built against poky-tiny distro.
 # poky-tiny sets PREFERRED_PROVIDER_virtual/kernel to linux-yocto-tiny.
 # Since distro config is evaluated after the machine config, we need to
@@ -12,10 +11,8 @@ require conf/machine/include/tune-cortexa5.inc
 # PREFERRED_PROVIDER_virtual/kernel specified in the machine config will
 # apply.
 #
-PREFERRED_PROVIDER_virtual/kernel_forcevariable = "linux-yocto"
+PREFERRED_PROVIDER_virtual/kernel:forcevariable = "linux-yocto"
 PREFERRED_VERSION_linux-yocto ?= "5.3%"
-KBUILD_DEFCONFIG = "multi_v7_defconfig"
-KCONFIG_MODE = "--alldefconfig"
 
 PREFERRED_VERSION_trusted-firmware-a ?= "2.5%"
 
diff --git a/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc b/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc
index e66fd5fba1ff..113662796610 100644
--- a/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc
+++ b/meta-arm-bsp/recipes-kernel/linux/linux-arm-platforms.inc
@@ -24,6 +24,9 @@ SRCREV:arm-platforms-kmeta = "6147e82375aa9df8f2a162d42ea6406c79c854c5"
 # Corstone-500 KMACHINE
 #
 COMPATIBLE_MACHINE:corstone500 = "corstone500"
+KMACHINE:corstone500 = "corstone500"
+KBUILD_DEFCONFIG:corstone500  = "multi_v7_defconfig"
+KCONFIG_MODE:corstone500 = "--alldefconfig"
 
 #
 # FVP BASE KMACHINE
-- 
2.20.1


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

* [PATCH 6/7] CI: rename meta-python to meta-openembedded
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
                   ` (4 preceding siblings ...)
  2021-08-06 21:36 ` [PATCH 5/7] corstone500: clean-up kernel entries Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  2021-08-06 21:36 ` [PATCH 7/7] CI: move xen specific changes out of gem5-arm64-xen.yml Jon Mason
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Rename the meta-python.yml file to be meta-openembedded.  This allows
for more usage of the layers present there (as meta-python is housed
under meta-openembedded).

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 .gitlab-ci.yml                                |  2 +-
 ci/gem5-arm64-xen.yml                         |  8 +-------
 ci/gem5-arm64.yml                             |  6 +-----
 ci/meta-arm-autonomy.yml                      | 10 ++--------
 ci/{meta-python.yml => meta-openembedded.yml} |  2 ++
 ci/meta-zephyr.yml                            |  2 +-
 ci/musca-s1.yml                               |  2 +-
 7 files changed, 9 insertions(+), 23 deletions(-)
 rename ci/{meta-python.yml => meta-openembedded.yml} (76%)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a85d2cd79e5c..98a790878d39 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -85,7 +85,7 @@ check-layers:
   extends: .setup
   coverage: '/Coverage: \d+/'
   script:
-  - kas shell --update --force-checkout ci/base.yml:ci/meta-arm-autonomy.yml:ci/meta-python.yml --command \
+  - kas shell --update --force-checkout ci/base.yml:ci/meta-arm-autonomy.yml:ci/meta-openembedded.yml --command \
     "$CI_PROJECT_DIR/ci/check-layers.py $CI_PROJECT_DIR/ci/check-layers.yml $CI_PROJECT_DIR $KAS_WORK_DIR"
 
 corstone500:
diff --git a/ci/gem5-arm64-xen.yml b/ci/gem5-arm64-xen.yml
index 4a6fb3b1dec0..f71ffca33ffe 100644
--- a/ci/gem5-arm64-xen.yml
+++ b/ci/gem5-arm64-xen.yml
@@ -3,18 +3,12 @@ header:
   version: 9
   includes:
     - base.yml
-    - meta-python.yml
+    - meta-openembedded.yml
 
 repos:
   meta-arm:
     layers:
       meta-gem5:
-  meta-openembedded:
-    url: https://git.openembedded.org/meta-openembedded
-    layers:
-      meta-oe:
-      meta-filesystems:
-      meta-networking:
   meta-virtualization:
     url: git://git.yoctoproject.org/meta-virtualization
     #FIXME - remove after master branch has overrides syntax conversion patch
diff --git a/ci/gem5-arm64.yml b/ci/gem5-arm64.yml
index fc1b5c91f09b..6d348fc73909 100644
--- a/ci/gem5-arm64.yml
+++ b/ci/gem5-arm64.yml
@@ -2,17 +2,13 @@ header:
   version: 9
   includes:
     - base.yml
+    - meta-openembedded.yml
 
 repos:
   meta-arm:
     layers:
       meta-gem5:
 
-  meta-openembedded:
-    url: https://git.openembedded.org/meta-openembedded
-    layers:
-      meta-oe:
-
 machine: gem5-arm64
 
 target:
diff --git a/ci/meta-arm-autonomy.yml b/ci/meta-arm-autonomy.yml
index f95642c7ef9d..4402b968a383 100644
--- a/ci/meta-arm-autonomy.yml
+++ b/ci/meta-arm-autonomy.yml
@@ -1,15 +1,9 @@
 header:
   version: 9
+  includes:
+    - meta-openembedded.yml
 
 repos:
-  meta-openembedded:
-    url: https://git.openembedded.org/meta-openembedded
-    layers:
-      meta-oe:
-      meta-networking:
-      meta-python:
-      meta-filesystem:
-
   meta-virtualization:
     url: https://git.yoctoproject.org/git/meta-virtualization
 
diff --git a/ci/meta-python.yml b/ci/meta-openembedded.yml
similarity index 76%
rename from ci/meta-python.yml
rename to ci/meta-openembedded.yml
index 0b4b958e16d3..4b95217bdec2 100644
--- a/ci/meta-python.yml
+++ b/ci/meta-openembedded.yml
@@ -5,5 +5,7 @@ repos:
   meta-openembedded:
     url: https://git.openembedded.org/meta-openembedded
     layers:
+      meta-filesystems:
+      meta-networking:
       meta-oe:
       meta-python:
diff --git a/ci/meta-zephyr.yml b/ci/meta-zephyr.yml
index aa3f97c1ca13..2b9d19e51b07 100644
--- a/ci/meta-zephyr.yml
+++ b/ci/meta-zephyr.yml
@@ -1,7 +1,7 @@
 header:
   version: 9
   includes:
-    - meta-python.yml
+    - meta-openembedded.yml
 
 repos:
   meta-zephyr:
diff --git a/ci/musca-s1.yml b/ci/musca-s1.yml
index 30a12d53459f..4d31a68244eb 100644
--- a/ci/musca-s1.yml
+++ b/ci/musca-s1.yml
@@ -2,7 +2,7 @@ header:
   version: 9
   includes:
     - base.yml
-    - meta-python.yml
+    - meta-openembedded.yml
 
 machine: musca-s1
 
-- 
2.20.1


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

* [PATCH 7/7] CI: move xen specific changes out of gem5-arm64-xen.yml
  2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
                   ` (5 preceding siblings ...)
  2021-08-06 21:36 ` [PATCH 6/7] CI: rename meta-python to meta-openembedded Jon Mason
@ 2021-08-06 21:36 ` Jon Mason
  6 siblings, 0 replies; 8+ messages in thread
From: Jon Mason @ 2021-08-06 21:36 UTC (permalink / raw)
  To: meta-arm

Move the xen specific changes out of gem5-arm64-xen.yml.  This allows
for other xen machines in the CI.  Adding Xen machines for qemuarm and
qemuarm64 allows for more testing, which should be expanded when the Xen
Test Framework in meta-virtualization is expanded to work on arm
machines.

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 .gitlab-ci.yml             | 20 +++++++++++++-------
 ci/gem5-arm64-xen.yml      | 24 ------------------------
 ci/meta-arm-autonomy.yml   |  4 +---
 ci/meta-virtualization.yml |  9 +++++++++
 ci/qemuarm64.yml           |  6 ++++++
 ci/xen.yml                 | 11 +++++++++++
 6 files changed, 40 insertions(+), 34 deletions(-)
 delete mode 100644 ci/gem5-arm64-xen.yml
 create mode 100644 ci/meta-virtualization.yml
 create mode 100644 ci/qemuarm64.yml
 create mode 100644 ci/xen.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 98a790878d39..bbd4c916892e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -112,7 +112,7 @@ fvp-baser-aemv8r64:
 gem5-arm64:
   extends: .build
 
-gem5-arm64-xen:
+gem5-arm64/xen:
   extends: .build
 
 gem5-atp-arm64:
@@ -145,12 +145,6 @@ n1sdp/armgcc:
 qemu-cortex-a53:
   extends: .build
 
-qemuarm/testimage:
-  extends: .build
-
-qemuarm/clang/testimage:
-  extends: .build
-
 qemuarm64-sbsa:
   extends: .build
 
@@ -166,6 +160,18 @@ qemuarm64-secureboot/clang/musl/testimage:
 qemuarm64-secureboot/musl/testimage:
   extends: .build
 
+qemuarm64/xen:
+  extends: .build
+
+qemuarm/clang/testimage:
+  extends: .build
+
+qemuarm/testimage:
+  extends: .build
+
+qemuarm/xen:
+  extends: .build
+
 qemuarmv5/testimage:
   extends: .build
 
diff --git a/ci/gem5-arm64-xen.yml b/ci/gem5-arm64-xen.yml
deleted file mode 100644
index f71ffca33ffe..000000000000
--- a/ci/gem5-arm64-xen.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-header:
-  version: 9
-  includes:
-    - base.yml
-    - meta-openembedded.yml
-
-repos:
-  meta-arm:
-    layers:
-      meta-gem5:
-  meta-virtualization:
-    url: git://git.yoctoproject.org/meta-virtualization
-    #FIXME - remove after master branch has overrides syntax conversion patch
-    refspec: master-next
-
-machine: gem5-arm64
-
-local_conf_header:
-  meta-virt:
-    DISTRO_FEATURES:append = " virtualization xen"
-
-target:
-  - xen-image-minimal
diff --git a/ci/meta-arm-autonomy.yml b/ci/meta-arm-autonomy.yml
index 4402b968a383..260750af5374 100644
--- a/ci/meta-arm-autonomy.yml
+++ b/ci/meta-arm-autonomy.yml
@@ -2,11 +2,9 @@ header:
   version: 9
   includes:
     - meta-openembedded.yml
+    - meta-virtualization.yml
 
 repos:
-  meta-virtualization:
-    url: https://git.yoctoproject.org/git/meta-virtualization
-
   meta-arm:
     layers:
       meta-arm-autonomy:
diff --git a/ci/meta-virtualization.yml b/ci/meta-virtualization.yml
new file mode 100644
index 000000000000..b7e15b2abb4e
--- /dev/null
+++ b/ci/meta-virtualization.yml
@@ -0,0 +1,9 @@
+header:
+  version: 9
+  includes:
+    - meta-openembedded.yml
+
+repos:
+  meta-virtualization:
+    url: git://git.yoctoproject.org/meta-virtualization
+    refspec: master-next
diff --git a/ci/qemuarm64.yml b/ci/qemuarm64.yml
new file mode 100644
index 000000000000..cc29c75062ab
--- /dev/null
+++ b/ci/qemuarm64.yml
@@ -0,0 +1,6 @@
+header:
+  version: 9
+  includes:
+    - base.yml
+
+machine: qemuarm64
diff --git a/ci/xen.yml b/ci/xen.yml
new file mode 100644
index 000000000000..d0c1765ee386
--- /dev/null
+++ b/ci/xen.yml
@@ -0,0 +1,11 @@
+header:
+  version: 9
+  includes:
+    - meta-virtualization.yml
+
+local_conf_header:
+  meta-virt:
+    DISTRO_FEATURES:append = " virtualization xen"
+
+target:
+  - xen-image-minimal
-- 
2.20.1


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

end of thread, other threads:[~2021-08-06 21:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-06 21:36 [PATCH 0/7] more override syntax fixes and cleanups Jon Mason
2021-08-06 21:36 ` [PATCH 1/7] gem5: Fix xen override syntax bug Jon Mason
2021-08-06 21:36 ` [PATCH 2/7] CI: fix check-layers Jon Mason
2021-08-06 21:36 ` [PATCH 3/7] CI: use meta-virtualization master-next branch Jon Mason
2021-08-06 21:36 ` [PATCH 4/7] juno: temporarily pin 5.4 kernel version Jon Mason
2021-08-06 21:36 ` [PATCH 5/7] corstone500: clean-up kernel entries Jon Mason
2021-08-06 21:36 ` [PATCH 6/7] CI: rename meta-python to meta-openembedded Jon Mason
2021-08-06 21:36 ` [PATCH 7/7] CI: move xen specific changes out of gem5-arm64-xen.yml Jon Mason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).