On 1/31/2025 9:08 PM, Denys Dmytriyenko wrote:
On Thu, Jan 30, 2025 at 03:30:48PM +0530, Aniket Limaye via
lists.yoctoproject.org wrote:
From: Udit Kumar <[email protected]>
Add mcrc64 test application recipe.
This application is documented at[0].
[0]:
https://software-dl.ti.com/jacinto7/esd/processor-sdk-linux-j722s/10_01_00_04/exports/docs/linux/Foundational_Components/Kernel/Kernel_Drivers/MCRC64.html
Signed-off-by: Aniket Limaye <[email protected]>
Signed-off-by: Udit Kumar <[email protected]>
---
.../recipes-core/packagegroups/ti-test.bb | 1 +
.../recipes-kernel/mcrc64/files/mcrc64.c | 114 ++++++++++++++++++
.../recipes-kernel/mcrc64/mcrc64.bb | 19 +++
3 files changed, 134 insertions(+)
create mode 100644 meta-arago-test/recipes-kernel/mcrc64/files/mcrc64.c
create mode 100644 meta-arago-test/recipes-kernel/mcrc64/mcrc64.bb
...
diff --git a/meta-arago-test/recipes-kernel/mcrc64/mcrc64.bb
b/meta-arago-test/recipes-kernel/mcrc64/mcrc64.bb
new file mode 100644
index 00000000..b0352585
--- /dev/null
+++ b/meta-arago-test/recipes-kernel/mcrc64/mcrc64.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "Application to test MCRC64 driver"
SUMMARY
Ahhh I missed that.
Will send a v2
Regards,
Aniket
+
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM =
"file://mcrc64.c;beginline=1;endline=33;md5=070547e79367134fcfdf7fdb5e3ef7e3"
+
+SRC_URI = "file://mcrc64.c"
+
+S = "${WORKDIR}/sources"
+UNPACKDIR = "${S}"
+
+do_compile() {
+ ${CC} ${CFLAGS} ${LDFLAGS} ${UNPACKDIR}/mcrc64.c -o mcrc64
+}
+
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 mcrc64 ${D}${bindir}
+}
--
2.48.1
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#15788):
https://lists.yoctoproject.org/g/meta-arago/message/15788
Mute This Topic: https://lists.yoctoproject.org/mt/110894861/21656
Group Owner: [email protected]
Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-