All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Adding a test application for external system
@ 2022-09-26 12:15 emekcan.aras
  2022-09-26 12:15 ` [PATCH 1/2] arm-bsp/test: Adding a test app " emekcan.aras
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: emekcan.aras @ 2022-09-26 12:15 UTC (permalink / raw)
  To: meta-arm, Jon.Mason, Ross.Burton; +Cc: nd, Emekcan

From: Emekcan <emekcan.aras@arm.com>

Adds a linux userspace test application and a recipe to test 
external system in corstone1000 platform.

Emekcan (2):
  arm-bsp/test: Adding a test app for external system
  arm-bsp/images: Adding external system test to initramfs image

 .../images/corstone1000-initramfs-image.bb    |  3 +++
 .../corstone1000-external-sys-tests_1.0.bb    | 21 +++++++++++++++++++
 2 files changed, 24 insertions(+)
 create mode 100644 meta-arm-bsp/recipes-test/corstone1000-external-sys-tests/corstone1000-external-sys-tests_1.0.bb

-- 
2.17.1



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

* [PATCH 1/2] arm-bsp/test: Adding a test app for external system
  2022-09-26 12:15 [PATCH 0/2] Adding a test application for external system emekcan.aras
@ 2022-09-26 12:15 ` emekcan.aras
  2022-09-26 12:15 ` [PATCH 2/2] arm-bsp/images: Adding external system test to initramfs image emekcan.aras
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: emekcan.aras @ 2022-09-26 12:15 UTC (permalink / raw)
  To: meta-arm, Jon.Mason, Ross.Burton; +Cc: nd, Emekcan

From: Emekcan <emekcan.aras@arm.com>

Adds a linux userspace test application and a recipe
to build it to test external system in corstone1000
platform.

Signed-off-by: Emekcan Aras <emekcan.aras@arm.com>
---
 .../corstone1000-external-sys-tests_1.0.bb    | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 meta-arm-bsp/recipes-test/corstone1000-external-sys-tests/corstone1000-external-sys-tests_1.0.bb

diff --git a/meta-arm-bsp/recipes-test/corstone1000-external-sys-tests/corstone1000-external-sys-tests_1.0.bb b/meta-arm-bsp/recipes-test/corstone1000-external-sys-tests/corstone1000-external-sys-tests_1.0.bb
new file mode 100644
index 00000000..04c0aae2
--- /dev/null
+++ b/meta-arm-bsp/recipes-test/corstone1000-external-sys-tests/corstone1000-external-sys-tests_1.0.bb
@@ -0,0 +1,21 @@
+SUMMARY = "CORSTONE1000 external systems communications tests"
+DESCRIPTION = "This is a Linux userspace tool to test the communication between Corstone1000 cores"
+HOMEPAGE = "https://git.linaro.org/landing-teams/working/arm/test-apps.git"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://license.md;md5=e44b2531cd6ffe9dece394dbe988d9a0"
+
+SRC_URI = "git://git.linaro.org/landing-teams/working/arm/test-apps.git;protocol=https;branch=master"
+SRCREV = "2945cd92f7c6dbe4999ee72cd5cf1e2615eedba7"
+PV .= "+git${SRCPV}"
+
+COMPATIBLE_MACHINE = "corstone1000"
+
+S = "${WORKDIR}/git"
+
+do_compile() {
+    ${CC} ${S}/test-app.c ${CFLAGS} ${LDFLAGS} -o ${S}/systems-comms-tests
+}
+
+do_install() {
+    install -D -p -m 0755 ${S}/systems-comms-tests ${D}${bindir}/systems-comms-tests
+}
-- 
2.17.1



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

* [PATCH 2/2] arm-bsp/images: Adding external system test to initramfs image
  2022-09-26 12:15 [PATCH 0/2] Adding a test application for external system emekcan.aras
  2022-09-26 12:15 ` [PATCH 1/2] arm-bsp/test: Adding a test app " emekcan.aras
@ 2022-09-26 12:15 ` emekcan.aras
  2022-09-28 13:41 ` [PATCH 0/2] Adding a test application for external system Jon Mason
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: emekcan.aras @ 2022-09-26 12:15 UTC (permalink / raw)
  To: meta-arm, Jon.Mason, Ross.Burton; +Cc: nd, Emekcan

From: Emekcan <emekcan.aras@arm.com>

Adds the external system test application and the relevant
recipe into the corstone1000 initramfs image.

Signed-off-by: Emekcan Aras <emekcan.aras@arm.com>
---
 .../recipes-bsp/images/corstone1000-initramfs-image.bb         | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-arm-bsp/recipes-bsp/images/corstone1000-initramfs-image.bb b/meta-arm-bsp/recipes-bsp/images/corstone1000-initramfs-image.bb
index b778a008..77e30ab1 100644
--- a/meta-arm-bsp/recipes-bsp/images/corstone1000-initramfs-image.bb
+++ b/meta-arm-bsp/recipes-bsp/images/corstone1000-initramfs-image.bb
@@ -28,3 +28,6 @@ IMAGE_INSTALL += "ffa-debugfs-mod"
 
 # psa-arch-tests linux userspace application
 IMAGE_INSTALL += "secure-partitions-psa-api-tests"
+
+# external system linux userspace test application
+IMAGE_INSTALL += "corstone1000-external-sys-tests"
-- 
2.17.1



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

* Re: [PATCH 0/2] Adding a test application for external system
  2022-09-26 12:15 [PATCH 0/2] Adding a test application for external system emekcan.aras
  2022-09-26 12:15 ` [PATCH 1/2] arm-bsp/test: Adding a test app " emekcan.aras
  2022-09-26 12:15 ` [PATCH 2/2] arm-bsp/images: Adding external system test to initramfs image emekcan.aras
@ 2022-09-28 13:41 ` Jon Mason
  2022-09-29 18:56 ` Jon Mason
  2022-09-30 20:21 ` Jon Mason
  4 siblings, 0 replies; 6+ messages in thread
From: Jon Mason @ 2022-09-28 13:41 UTC (permalink / raw)
  To: meta-arm, Jon.Mason, emekcan.aras, Ross.Burton; +Cc: nd

On Mon, 26 Sep 2022 13:15:19 +0100, emekcan.aras@arm.com wrote:
> Adds a linux userspace test application and a recipe to test
> external system in corstone1000 platform.
> 
> Emekcan (2):
>   arm-bsp/test: Adding a test app for external system
>   arm-bsp/images: Adding external system test to initramfs image
> 
> [...]

Applied, thanks!

[1/2] arm-bsp/test: Adding a test app for external system
      commit: 037011da6490fd34e7a9f29c1eca3056ef5d904c
[2/2] arm-bsp/images: Adding external system test to initramfs image
      commit: 4a190f18def7355699fd5c4fc8657dead5b07e84

Best regards,
-- 
Jon Mason <jon.mason@arm.com>


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

* Re: [PATCH 0/2] Adding a test application for external system
  2022-09-26 12:15 [PATCH 0/2] Adding a test application for external system emekcan.aras
                   ` (2 preceding siblings ...)
  2022-09-28 13:41 ` [PATCH 0/2] Adding a test application for external system Jon Mason
@ 2022-09-29 18:56 ` Jon Mason
  2022-09-30 20:21 ` Jon Mason
  4 siblings, 0 replies; 6+ messages in thread
From: Jon Mason @ 2022-09-29 18:56 UTC (permalink / raw)
  To: meta-arm, emekcan.aras, Jon.Mason, Ross.Burton; +Cc: nd

On Mon, 26 Sep 2022 13:15:19 +0100, emekcan.aras@arm.com wrote:
> Adds a linux userspace test application and a recipe to test
> external system in corstone1000 platform.
> 
> Emekcan (2):
>   arm-bsp/test: Adding a test app for external system
>   arm-bsp/images: Adding external system test to initramfs image
> 
> [...]

Applied, thanks!

[1/2] arm-bsp/test: Adding a test app for external system
      commit: 037011da6490fd34e7a9f29c1eca3056ef5d904c
[2/2] arm-bsp/images: Adding external system test to initramfs image
      commit: 4a190f18def7355699fd5c4fc8657dead5b07e84

Best regards,
-- 
Jon Mason <jon.mason@arm.com>


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

* Re: [PATCH 0/2] Adding a test application for external system
  2022-09-26 12:15 [PATCH 0/2] Adding a test application for external system emekcan.aras
                   ` (3 preceding siblings ...)
  2022-09-29 18:56 ` Jon Mason
@ 2022-09-30 20:21 ` Jon Mason
  4 siblings, 0 replies; 6+ messages in thread
From: Jon Mason @ 2022-09-30 20:21 UTC (permalink / raw)
  To: meta-arm, emekcan.aras, Jon.Mason, Ross.Burton; +Cc: nd

On Mon, 26 Sep 2022 13:15:19 +0100, emekcan.aras@arm.com wrote:
> Adds a linux userspace test application and a recipe to test
> external system in corstone1000 platform.
> 
> Emekcan (2):
>   arm-bsp/test: Adding a test app for external system
>   arm-bsp/images: Adding external system test to initramfs image
> 
> [...]

Applied, thanks!

[1/2] arm-bsp/test: Adding a test app for external system
      commit: 037011da6490fd34e7a9f29c1eca3056ef5d904c
[2/2] arm-bsp/images: Adding external system test to initramfs image
      commit: 4a190f18def7355699fd5c4fc8657dead5b07e84

Best regards,
-- 
Jon Mason <jon.mason@arm.com>


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

end of thread, other threads:[~2022-09-30 20:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-26 12:15 [PATCH 0/2] Adding a test application for external system emekcan.aras
2022-09-26 12:15 ` [PATCH 1/2] arm-bsp/test: Adding a test app " emekcan.aras
2022-09-26 12:15 ` [PATCH 2/2] arm-bsp/images: Adding external system test to initramfs image emekcan.aras
2022-09-28 13:41 ` [PATCH 0/2] Adding a test application for external system Jon Mason
2022-09-29 18:56 ` Jon Mason
2022-09-30 20:21 ` Jon Mason

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.