Skip to content

Commit

Permalink
main: change the license type
Browse files Browse the repository at this point in the history
From BSD-3 Clause to the Apache one, as other
in-tree zephyr samples applications do.

Signed-off-by: Felipe Neves <felipe.neves@linaro.org>
  • Loading branch information
uLipe committed Jul 5, 2023
1 parent 998a4a2 commit a86d734
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 8 deletions.
6 changes: 6 additions & 0 deletions examples/zephyr/dual_qemu_ivshmem/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Prerequisites

* QEMU needs to available.

Note:
*****

* The Vendor-ID 0x1AF4 is being used from all other Zephyr in-tree samples, currently there
is no Vendor allocated with the selected number.

ivshmem-server needs to be available and running. The server is available in
Zephyr SDK or pre-built in some distributions. Otherwise, it is available in
QEMU source tree.
Expand Down
2 changes: 1 addition & 1 deletion examples/zephyr/dual_qemu_ivshmem/host/app.overlay
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright 2023 Linaro.
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Apache-2.0
*/
#include "boards/pcie_ivshmem.dtsi"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright 2023 Linaro.
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/dt-bindings/pcie/pcie.h>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Linaro
# SPDX-License-Identifier: Apache-2.0

CONFIG_PCIE_CONTROLLER=y
CONFIG_PCIE_ECAM=y

Expand Down
3 changes: 3 additions & 0 deletions examples/zephyr/dual_qemu_ivshmem/host/prj.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Linaro
# SPDX-License-Identifier: Apache-2.0

CONFIG_PCIE=y
# required by doorbell
CONFIG_PCIE_MSI=y
Expand Down
4 changes: 2 additions & 2 deletions examples/zephyr/dual_qemu_ivshmem/host/src/main.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright 2023 Linaro.
* Copyright (c) 2023, Linaro Limited
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdio.h>

Expand Down
2 changes: 1 addition & 1 deletion examples/zephyr/dual_qemu_ivshmem/remote/app.overlay
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright 2023 Linaro.
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Apache-2.0
*/
#include "boards/pcie_ivshmem.dtsi"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright 2023 Linaro.
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/dt-bindings/pcie/pcie.h>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Linaro
# SPDX-License-Identifier: Apache-2.0

CONFIG_PCIE_CONTROLLER=y
CONFIG_PCIE_ECAM=y

Expand Down
3 changes: 3 additions & 0 deletions examples/zephyr/dual_qemu_ivshmem/remote/prj.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Linaro
# SPDX-License-Identifier: Apache-2.0

CONFIG_PCIE=y
# required by doorbell
CONFIG_PCIE_MSI=y
Expand Down
4 changes: 2 additions & 2 deletions examples/zephyr/dual_qemu_ivshmem/remote/src/main.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright 2023 Linaro.
* Copyright (c) 2023, Linaro Limited
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdio.h>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2023, Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/

#ifndef RPMSG_IVHSMEM_BACKEND_H__
#define RPMSG_IVHSMEM_BACKEND_H__

Expand Down

0 comments on commit a86d734

Please sign in to comment.