Skip to content

Commit

Permalink
apps: add missing license information
Browse files Browse the repository at this point in the history
Add BSD license when missing.
Copyright has also been added for files when possible.

Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
  • Loading branch information
arnopo committed Dec 1, 2020
1 parent 38aed4a commit a659210
Show file tree
Hide file tree
Showing 17 changed files with 75 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/examples/echo/rpmsg-echo.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of rpmsg
This application is meant to run on the remote CPU running baremetal code.
This application echoes back data that was sent to it by the master core. */
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/echo/rpmsg-echo.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef RPMSG_ECHO_H
#define RPMSG_ECHO_H

Expand Down
4 changes: 4 additions & 0 deletions apps/examples/echo/rpmsg-ping.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of rpmsg
This application is meant to run on the remote CPU running baremetal code.
This application echoes back data that was sent to it by the master core. */
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/matrix_multiply/matrix_multiply.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of remoteproc
and rpmsg APIs on the remote core. This application is meant to run on the remote CPU
running baremetal code. This applicationr receives two matrices from the master,
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/matrix_multiply/matrix_multiply.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef MATRIX_MULTIPLY_H
#define MATRIX_MULTIPLY_H

Expand Down
4 changes: 4 additions & 0 deletions apps/examples/matrix_multiply/matrix_multiplyd.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of remoteproc
and rpmsg APIs on the remote core. This application is meant to run on the remote CPU
running baremetal code. This applicationr receives two matrices from the master,
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/rpc_demo/rpc_demo.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of proxy from the remote core.
This application is meant to run on the remote CPU running baremetal.
This applicationr can print to to master console and perform file I/O using proxy mechanism. */
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/rpc_demo/rpc_demod.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of proxy from the remote core.
This application is meant to run on the remote CPU running baremetal.
This applicationr can print to to master console and perform file I/O using proxy mechanism. */
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/rpc_demo/rpmsg-rpc-demo.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef RPMSG_RPC_DEMO_H
#define RPMSG_RPC_DEMO_H

Expand Down
4 changes: 4 additions & 0 deletions apps/examples/rpmsg_sample_echo/rpmsg-sample-echo.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/*
* This is a sample demonstration application that showcases usage of rpmsg
* This application is meant to run on the remote CPU running baremetal code.
Expand Down
4 changes: 4 additions & 0 deletions apps/examples/rpmsg_sample_echo/rpmsg-sample-ping.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/*
* This is a sample demonstration application that showcases usage of rpmsg
* This application is meant to run on the remote CPU running baremetal code.
Expand Down
7 changes: 7 additions & 0 deletions apps/machine/zynq7/platform_info.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2014, Mentor Graphics Corporation. All rights reserved.
* Copyright (c) 2017 - 2018 Xilinx, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef PLATFORM_INFO_H_
#define PLATFORM_INFO_H_

Expand Down
8 changes: 8 additions & 0 deletions apps/machine/zynqmp_r5/platform_info.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) 2014, Mentor Graphics Corporation
* All rights reserved.
* Copyright (c) 2017 Xilinx, Inc.
*
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef PLATFORM_INFO_H_
#define PLATFORM_INFO_H_

Expand Down
4 changes: 4 additions & 0 deletions apps/tests/msg/rpmsg-flood-ping.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a test application to send rpmsgs in flood mode.
* That is it will keep sending messages until there is no available
* buffers.
Expand Down
4 changes: 4 additions & 0 deletions apps/tests/msg/rpmsg-ping.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of rpmsg
This application is meant to run on the remote CPU running baremetal code.
This application echoes back data that was sent to it by the master core. */
Expand Down
4 changes: 4 additions & 0 deletions apps/tests/msg/rpmsg-ping.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef RPMSG_PING_H
#define RPMSG_PING_H

Expand Down
4 changes: 4 additions & 0 deletions apps/tests/msg/rpmsg-update.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* SPDX-License-Identifier: BSD-3-Clause
*/

/* This is a sample demonstration application that showcases usage of rpmsg
This application is meant to run on the remote CPU running baremetal code.
This application echoes back data that was sent to it by the master core. */
Expand Down

0 comments on commit a659210

Please sign in to comment.