From 0af658fb5989ee226e3f16b41557e95f31d3a9d0 Mon Sep 17 00:00:00 2001 From: Hugues Kamba-Mpiana Date: Fri, 7 Jun 2024 14:03:52 +0100 Subject: [PATCH 1/3] docs: Rename license.md to LICENSE The license file is renamed to align with best practices and enhance clarity and functionality in the repository. Signed-off-by: Hugues Kamba-Mpiana --- license.md => LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename license.md => LICENSE (95%) diff --git a/license.md b/LICENSE similarity index 95% rename from license.md rename to LICENSE index 35c5088..f9214cb 100644 --- a/license.md +++ b/LICENSE @@ -1,7 +1,7 @@ License ======= -Copyright (c) 2019, Arm Limited and Contributors. All rights reserved. +Copyright (c) 2019-2024, Arm Limited and Contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- GitLab From b14948a61f1e1b2685a781b34de71e3aafe7c088 Mon Sep 17 00:00:00 2001 From: Hugues Kamba-Mpiana Date: Fri, 7 Jun 2024 14:05:35 +0100 Subject: [PATCH 2/3] docs: Add DCO.txt Add Developer Certificate of Origin (DCO) to ensure contributors agree to the terms before submitting code. Include instructions on how contributors should certify their commits. Signed-off-by: Hugues Kamba-Mpiana --- DCO.txt | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 DCO.txt diff --git a/DCO.txt b/DCO.txt new file mode 100644 index 0000000..8201f99 --- /dev/null +++ b/DCO.txt @@ -0,0 +1,37 @@ +Developer Certificate of Origin +Version 1.1 + +Copyright (C) 2004, 2006 The Linux Foundation and its contributors. +1 Letterman Drive +Suite D4700 +San Francisco, CA, 94129 + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + + +Developer's Certificate of Origin 1.1 + +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I + have the right to submit it under the open source license + indicated in the file; or + +(b) The contribution is based upon previous work that, to the best + of my knowledge, is covered under an appropriate open source + license and I have the right under that license to submit that + work with modifications, whether created in whole or in part + by me, under the same open source license (unless I am + permitted to submit under a different license), as indicated + in the file; or + +(c) The contribution was provided directly to me by some other + person who certified (a), (b) or (c) and I have not modified + it. + +(d) I understand and agree that this project and the contribution + are public and that a record of the contribution (including all + personal information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed consistent with + this project or the open source license(s) involved. -- GitLab From d2e8759d6e6c4764dd013eb174aa81332806634a Mon Sep 17 00:00:00 2001 From: Hugues Kamba-Mpiana Date: Fri, 7 Jun 2024 15:11:11 +0100 Subject: [PATCH 3/3] feature: Add README.md Create a new README.md file to provide a brief overview of the project. Include project information on usage. Signed-off-by: Hugues Kamba-Mpiana --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..089472d --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# Arm Corstone-1000 Applications + +--- + +__🚨Disclaimer:__ + +*_Arm reference solutions are Arm public example software projects that track and pull upstream components, incorporating their respective security fixes published over time._* +*_Users of these solutions are responsible for ensuring that the components they use contain all the required security fixes, if and when they deploy a product derived from Arm reference solutions._* + +--- + +Welcome to the Arm Corstone-1000 Applications repository! + +This repository contains software applications designed to test the external system of the [Corstone-1000 Arm pre-integrated IP subsystems and system IP][corstone-1000-system-ip]. +It is designed to work with the Corstone-1000 reference platform software stack. + +For detailed information about the Corstone-1000 software stack, including usage of the applications +in this repository, refer to the [official Corstone-1000 software stack User Guide][corstone-1000-sw-stack-user-guide]. + + +[corstone-1000-system-ip]: https://developer.arm.com/Processors/Corstone-1000 +[corstone-1000-sw-stack-user-guide]: https://corstone1000.docs.arm.com/en/corstone1000-2023.06/user-guide.html#running-the-external-system-test-command-systems-comms-tests -- GitLab