From 2b815c45ca3a6f84ef5323f6d727e96ad27769b9 Mon Sep 17 00:00:00 2001 From: Roni Riska Date: Wed, 27 Nov 2019 10:48:46 +0200 Subject: [PATCH] Add new license claim Adding extra line that src files are part of RIC platform project. Change-Id: I98979fc5680ce4b27f38fe130135938a7dcfc726 Signed-off-by: Roni Riska --- CMakeLists.txt | 4 +++- ci/Dockerfile | 5 ++++- ci/ci_build.sh | 5 ++++- ci/publish.sh | 3 +++ cmake/cxx1.cmake | 3 +++ docs/index.rst | 4 +++- docs/overview.rst | 4 +++- docs/release-notes.rst | 4 +++- include/tracelibcpp/tracelibcpp.hpp | 3 +++ src/config.hpp | 19 +++++++++++++++++++ src/tracelib.cpp | 3 +++ tst/testcreate.cpp | 3 +++ 12 files changed, 54 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1198c2..e0e8e74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. # - +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# cmake_minimum_required (VERSION 3.5) file( diff --git a/ci/Dockerfile b/ci/Dockerfile index 4827d42..947ecd1 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -13,7 +13,10 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# # CI to verify the tracingcpp library # Inherits C toolchain from buildpack-deps:stretch # Adds required build tools diff --git a/ci/ci_build.sh b/ci/ci_build.sh index 5caa2b8..a948258 100755 --- a/ci/ci_build.sh +++ b/ci/ci_build.sh @@ -14,7 +14,10 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# set -e # UT diff --git a/ci/publish.sh b/ci/publish.sh index 3854617..5eb2089 100755 --- a/ci/publish.sh +++ b/ci/publish.sh @@ -15,6 +15,9 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# echo "$0: start copying packages" TARGET=/export diff --git a/cmake/cxx1.cmake b/cmake/cxx1.cmake index 2cc7f42..c25cc59 100644 --- a/cmake/cxx1.cmake +++ b/cmake/cxx1.cmake @@ -14,6 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED YES) set(CMAKE_POSITION_INDEPENDENT_CODE ON) diff --git a/docs/index.rst b/docs/index.rst index 0f20d89..1b4c57c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,7 +24,9 @@ .. .. limitations under the License. .. - +.. This source code is part of the near-RT RIC (RAN Intelligent Controller) +.. platform project (RICP). +.. Welcome to O-RAN SC tracelibcpp Documentation ============================================= diff --git a/docs/overview.rst b/docs/overview.rst index dc31408..f4fd2a9 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -24,7 +24,9 @@ .. .. limitations under the License. .. - +.. This source code is part of the near-RT RIC (RAN Intelligent Controller) +.. platform project (RICP). +.. tracelibcpp Overview ==================== diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 40456e6..5440394 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -24,7 +24,9 @@ .. .. limitations under the License. .. - +.. This source code is part of the near-RT RIC (RAN Intelligent Controller) +.. platform project (RICP). +.. Release-Notes ============= diff --git a/include/tracelibcpp/tracelibcpp.hpp b/include/tracelibcpp/tracelibcpp.hpp index 47b1637..9c07d52 100644 --- a/include/tracelibcpp/tracelibcpp.hpp +++ b/include/tracelibcpp/tracelibcpp.hpp @@ -13,6 +13,9 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. + * + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). */ #ifndef _TRACELIBCPP_H_ diff --git a/src/config.hpp b/src/config.hpp index 5fb4ab8..a4068c5 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -1,3 +1,22 @@ +/* + * Copyright (c) 2019 AT&T Intellectual Property. + * Copyright (c) 2018-2019 Nokia. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ #ifndef _TRACELIB_CONFIG_HPP_ #define _TRACELIB_CONFIG_HPP_ diff --git a/src/tracelib.cpp b/src/tracelib.cpp index ae8717d..b1526f1 100644 --- a/src/tracelib.cpp +++ b/src/tracelib.cpp @@ -13,6 +13,9 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. + * + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). */ #include "tracelibcpp.hpp" diff --git a/tst/testcreate.cpp b/tst/testcreate.cpp index 7ab5a94..90e1ca2 100644 --- a/tst/testcreate.cpp +++ b/tst/testcreate.cpp @@ -13,6 +13,9 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. + * + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). */ #include -- 2.16.6