public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH 0/2] Cover LeMaker HiKey by CI
@ 2021-11-15 15:36 Anton Mikanovich
  2021-11-15 15:36 ` [PATCH 1/2] meta-isar: Enable bullseye support for HiKey board Anton Mikanovich
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Anton Mikanovich @ 2021-11-15 15:36 UTC (permalink / raw)
  To: isar-users; +Cc: Anton Mikanovich

LeMaker HiKey board support was broken between 4597eb2 and d68fe4ef
because it was not included into any of CI builds. Add it to full until
CI targets rebuild will be done.

Also move it from stretch to bullseye.

Anton Mikanovich (2):
  meta-isar: Enable bullseye support for HiKey board
  ci: Add hikey target

 meta-isar/conf/local.conf.sample               | 2 +-
 meta-isar/conf/multiconfig/hikey-bullseye.conf | 7 +++++++
 meta-isar/conf/multiconfig/hikey-stretch.conf  | 7 -------
 testsuite/build_test/build_test.py             | 3 ++-
 4 files changed, 10 insertions(+), 9 deletions(-)
 create mode 100644 meta-isar/conf/multiconfig/hikey-bullseye.conf
 delete mode 100644 meta-isar/conf/multiconfig/hikey-stretch.conf

-- 
2.25.1


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

* [PATCH 1/2] meta-isar: Enable bullseye support for HiKey board
  2021-11-15 15:36 [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich
@ 2021-11-15 15:36 ` Anton Mikanovich
  2021-11-15 15:36 ` [PATCH 2/2] ci: Add hikey target Anton Mikanovich
  2021-12-03 11:41 ` [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich
  2 siblings, 0 replies; 4+ messages in thread
From: Anton Mikanovich @ 2021-11-15 15:36 UTC (permalink / raw)
  To: isar-users; +Cc: Anton Mikanovich

Move LeMaker HiKey board from stretch to bullseye to keep it been
maintained.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 meta-isar/conf/local.conf.sample               | 2 +-
 meta-isar/conf/multiconfig/hikey-bullseye.conf | 7 +++++++
 meta-isar/conf/multiconfig/hikey-stretch.conf  | 7 -------
 3 files changed, 8 insertions(+), 8 deletions(-)
 create mode 100644 meta-isar/conf/multiconfig/hikey-bullseye.conf
 delete mode 100644 meta-isar/conf/multiconfig/hikey-stretch.conf

diff --git a/meta-isar/conf/local.conf.sample b/meta-isar/conf/local.conf.sample
index 1ab640d..9853e2a 100644
--- a/meta-isar/conf/local.conf.sample
+++ b/meta-isar/conf/local.conf.sample
@@ -61,7 +61,7 @@ BBMULTICONFIG = " \
     qemuriscv64-sid-ports \
     bananapi-buster \
     de0-nano-soc-buster \
-    hikey-stretch \
+    hikey-bullseye \
     nand-ubi-demo-buster \
     nanopi-neo-buster \
     stm32mp15x-buster \
diff --git a/meta-isar/conf/multiconfig/hikey-bullseye.conf b/meta-isar/conf/multiconfig/hikey-bullseye.conf
new file mode 100644
index 0000000..33ed3a3
--- /dev/null
+++ b/meta-isar/conf/multiconfig/hikey-bullseye.conf
@@ -0,0 +1,7 @@
+#
+# Copyright (c) Siemens AG, 2021
+#
+# SPDX-License-Identifier: MIT
+
+MACHINE = "hikey"
+DISTRO = "debian-bullseye"
diff --git a/meta-isar/conf/multiconfig/hikey-stretch.conf b/meta-isar/conf/multiconfig/hikey-stretch.conf
deleted file mode 100644
index 5eed8b9..0000000
--- a/meta-isar/conf/multiconfig/hikey-stretch.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-#
-# Copyright (c) Siemens AG, 2018
-#
-# SPDX-License-Identifier: MIT
-
-MACHINE = "hikey"
-DISTRO = "debian-stretch"
-- 
2.25.1


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

* [PATCH 2/2] ci: Add hikey target
  2021-11-15 15:36 [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich
  2021-11-15 15:36 ` [PATCH 1/2] meta-isar: Enable bullseye support for HiKey board Anton Mikanovich
@ 2021-11-15 15:36 ` Anton Mikanovich
  2021-12-03 11:41 ` [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich
  2 siblings, 0 replies; 4+ messages in thread
From: Anton Mikanovich @ 2021-11-15 15:36 UTC (permalink / raw)
  To: isar-users; +Cc: Anton Mikanovich

LeMaker HiKey board was not covered by CI build.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/build_test/build_test.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/testsuite/build_test/build_test.py b/testsuite/build_test/build_test.py
index d39c10c..9ab0f08 100644
--- a/testsuite/build_test/build_test.py
+++ b/testsuite/build_test/build_test.py
@@ -130,7 +130,8 @@ class NoCrossTest(CIBaseTest):
             'mc:qemuamd64-bullseye:isar-image-base',
             'mc:qemuarm-bullseye:isar-image-base',
             'mc:qemui386-bullseye:isar-image-base',
-            'mc:qemumipsel-bullseye:isar-image-base'
+            'mc:qemumipsel-bullseye:isar-image-base',
+            'mc:hikey-bullseye:isar-image-base'
                   ]
 
         try:
-- 
2.25.1


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

* Re: [PATCH 0/2] Cover LeMaker HiKey by CI
  2021-11-15 15:36 [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich
  2021-11-15 15:36 ` [PATCH 1/2] meta-isar: Enable bullseye support for HiKey board Anton Mikanovich
  2021-11-15 15:36 ` [PATCH 2/2] ci: Add hikey target Anton Mikanovich
@ 2021-12-03 11:41 ` Anton Mikanovich
  2 siblings, 0 replies; 4+ messages in thread
From: Anton Mikanovich @ 2021-12-03 11:41 UTC (permalink / raw)
  To: isar-users

15.11.2021 18:36, Anton Mikanovich wrote:
> LeMaker HiKey board support was broken between 4597eb2 and d68fe4ef
> because it was not included into any of CI builds. Add it to full until
> CI targets rebuild will be done.
>
> Also move it from stretch to bullseye.
>
> Anton Mikanovich (2):
>    meta-isar: Enable bullseye support for HiKey board
>    ci: Add hikey target
>
>   meta-isar/conf/local.conf.sample               | 2 +-
>   meta-isar/conf/multiconfig/hikey-bullseye.conf | 7 +++++++
>   meta-isar/conf/multiconfig/hikey-stretch.conf  | 7 -------
>   testsuite/build_test/build_test.py             | 3 ++-
>   4 files changed, 10 insertions(+), 9 deletions(-)
>   create mode 100644 meta-isar/conf/multiconfig/hikey-bullseye.conf
>   delete mode 100644 meta-isar/conf/multiconfig/hikey-stretch.conf
>
Applied to next.

-- 
Anton Mikanovich
Promwad Ltd.
External service provider of ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn, Germany
+49 (89) 122 67 24-0
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov


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

end of thread, other threads:[~2021-12-03 11:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-15 15:36 [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich
2021-11-15 15:36 ` [PATCH 1/2] meta-isar: Enable bullseye support for HiKey board Anton Mikanovich
2021-11-15 15:36 ` [PATCH 2/2] ci: Add hikey target Anton Mikanovich
2021-12-03 11:41 ` [PATCH 0/2] Cover LeMaker HiKey by CI Anton Mikanovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox