-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c469802
Showing
176 changed files
with
28,053 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
cmake_minimum_required (VERSION 2.6) | ||
if (POLICY CMP0048) | ||
cmake_policy(SET CMP0048 NEW) | ||
endif() | ||
|
||
if (POLICY CMP0077) | ||
cmake_policy(SET CMP0077 NEW) | ||
endif() | ||
|
||
# The version number | ||
set (OPENAMP_VERSION_MAJOR 1) | ||
set (OPENAMP_VERSION_MINOR 0) | ||
|
||
list (APPEND CMAKE_MODULE_PATH | ||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms") | ||
|
||
include (syscheck) | ||
project (open_amp C) | ||
|
||
include (CheckIncludeFiles) | ||
include (CheckCSourceCompiles) | ||
include (collect) | ||
include (options) | ||
include (depends) | ||
enable_testing () | ||
|
||
set (OPENAMP_ROOT_DIR "${CMAKE_CURRENT_SOURCE_DIR}") | ||
set (OPENAMP_BIN_ROOT "${CMAKE_CURRENT_BINARY_DIR}") | ||
|
||
if (WITH_OBSOLETE) | ||
add_subdirectory (obsolete) | ||
endif (WITH_OBSOLETE) | ||
|
||
add_subdirectory (lib) | ||
|
||
if (WITH_APPS) | ||
add_subdirectory (apps) | ||
endif (WITH_APPS) | ||
|
||
# vim: expandtab:ts=2:sw=2:smartindent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
Software License Agreement (BSD 3-Clause License) | ||
======================================== | ||
|
||
Copyright (c) 2014, Mentor Graphics Corporation. All rights reserved. | ||
Copyright (c) 2015 - 2016 Xilinx, Inc. All rights reserved. | ||
Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of <the copyright holder> nor the names of its contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
|
||
BSD 2-Clause License | ||
------------------------- | ||
|
||
Copyright (c) <year> <owner>. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
Notes | ||
========================================= | ||
Use the following tag instead of the full license text in the individual files: | ||
|
||
SPDX-License-Identifier: BSD-3-Clause | ||
SPDX-License-Identifier: BSD-2-Clause | ||
|
||
This enables machine processing of license information based on the SPDX | ||
License Identifiers that are here available: http://spdx.org/licenses/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# OpenAMP Maintainers | ||
|
||
OpenAMP project is maintained by the OpenAMP open source community. Everyone | ||
is encouraged to submit issues and changes to improve OpenAMP. | ||
|
||
The intention of this file is to provide a set of names that developers can | ||
consult when they have a question about OpenAMP and to provide a a set of | ||
names to be CC'd when submitting a patch. | ||
|
||
|
||
## Project Administration | ||
Ed Mooring <[email protected]> | ||
Arnaud Pouliquen <[email protected]> | ||
|
||
### All patches CC here | ||
[email protected] | ||
|
||
## Machines | ||
### Xilinx Platform - Zynq-7000 | ||
Ed Mooring <[email protected]> | ||
|
||
### Xilinx Platform - Zynq UltraScale+ MPSoC | ||
Ed Mooring <[email protected]> |
Oops, something went wrong.