Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache License

Check failure on line 1 in LICENSE

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID Detected License Issue

Snippet with 'Apache-2.0' file license found (203 lines) Location: https://github.com/albertito/dnss/blob/v0.1.0/LICENSE#L4 Component: pkg:github/albertito/dnss@v0.1.0 Download: https://github.com/albertito/dnss/archive/refs/tags/v0.1.0.tar.gz

Check failure on line 1 in LICENSE

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID Detected License Issue

Snippet with 'Apache-2.0' file license found (203 lines) Location: https://github.com/ludwig-ai/ludwig/blob/v0.7/LICENSE#L1 Component: pkg:github/ludwig-ai/ludwig@v0.7 Download: https://github.com/ludwig-ai/ludwig/archive/refs/tags/v0.7.tar.gz

Check failure on line 1 in LICENSE

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID Detected License Issue

Snippet with 'Apache-2.0, Android-SDK-2012, MIT (and more)' file licenses found (203 lines) Location: https://github.com/NVIDIA/CloudXR/blob/v2.0/arcore-android-sdk/LICENSE#L24 Component: pkg:github/nvidia/cloudxr@v2.0 Download: https://github.com/NVIDIA/CloudXR/archive/refs/tags/v2.0.tar.gz

Check failure on line 1 in LICENSE

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID Detected License Issue

Snippet with 'Apache-2.0, Android-SDK-2012, GPL-2.0 (and more)' file licenses found (203 lines) Location: https://github.com/google-ar/arcore-android-sdk/blob/v1.2.0/NOTICE#L7 Component: pkg:github/google-ar/arcore-android-sdk@v1.2.0 Download: https://github.com/google-ar/arcore-android-sdk/archive/refs/tags/v1.2.0.tar.gz
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -198,4 +198,32 @@
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.
limitations under the License.

--------------------------------------------------------------------------

BSD 2-Clause License

Check failure on line 205 in LICENSE

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID Detected License Issue

Snippet with 'BSD-2-Clause' file license found (25 lines) Location: https://github.com/nakabonne/nestif/blob/v0.1.0/LICENSE#L1 Component: pkg:github/nakabonne/nestif@v0.1.0 Download: https://github.com/nakabonne/nestif/archive/refs/tags/v0.1.0.tar.gz

Copyright <YEAR> <COPYRIGHT OWNER>
All rights reserved.
Comment on lines +207 to +208

Copilot AI Mar 31, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The added BSD 2-Clause License block still contains template placeholders (Copyright <YEAR> <COPYRIGHT OWNER>), which makes the repository licensing text ambiguous. Please replace these placeholders with the actual copyright holder/year for the BSD-licensed third-party components (see NOTICE for the listed BSD-2 items) or split into separate BSD-2 sections per holder/year.

Suggested change
Copyright <YEAR> <COPYRIGHT OWNER>
All rights reserved.
Copyright for BSD-licensed components is held by their respective owners
as identified in the accompanying NOTICE file. All rights reserved.

Copilot uses AI. Check for mistakes.

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.
19 changes: 19 additions & 0 deletions Tests/L1Tests/tests/test_UserSettings.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
*
* Copyright 2025 RDK Management
*
* 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.
*/

#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <mntent.h>
Expand Down
Loading