Skip to content

Commit c4fde62

Browse files
guvencMalteJ
authored andcommitted
Reuse compliance
Signed-off-by: Guvenc Gulce <[email protected]>
1 parent e701d9f commit c4fde62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+171
-0
lines changed

CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# metalnet maintainers
2+
* @ironcore-dev/networking

REUSE.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version = 1
2+
SPDX-PackageName = "FeOS"
3+
SPDX-PackageSupplier = "IronCore authors <[email protected]>"
4+
SPDX-PackageDownloadLocation = "https://github.com/ironcore-dev/FeOS"
5+
6+
7+
[[annotations]]
8+
path = [
9+
".github/**",
10+
"CODEOWNERS",
11+
"Makefile",
12+
"README.md",
13+
"Cargo.lock",
14+
"Cargo.toml",
15+
".gitignore",
16+
"**/Cargo.toml",
17+
"**/build.rs",
18+
"**/*.sql",
19+
"**/*.json",
20+
"proto/v1/*.proto",
21+
]
22+
precedence = "aggregate"
23+
SPDX-FileCopyrightText = "2023 SAP SE or an SAP affiliate company and IronCore contributors"
24+
SPDX-License-Identifier = "Apache-2.0"
25+
26+
[[annotations]]
27+
path = [
28+
"hack/**",
29+
"docs/**",
30+
"**/README.md",
31+
]
32+
precedence = "aggregate"
33+
SPDX-FileCopyrightText = "2023 SAP SE or an SAP affiliate company and IronCore contributors"
34+
SPDX-License-Identifier = "Apache-2.0"

cli/src/host_commands.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
use anyhow::{Context, Result};
25
use clap::{Args, Subcommand};
36
use feos_proto::host_service::{

cli/src/image_commands.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
use anyhow::{Context, Result};
25
use clap::{Args, Subcommand};
36
use feos_proto::image_service::{

cli/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
use anyhow::Result;
25
use clap::{Parser, Subcommand};
36

cli/src/vm_commands.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
use anyhow::{Context, Result};
25
use clap::{Args, Subcommand};
36
use crossterm::terminal::{disable_raw_mode, enable_raw_mode};

feos/proto/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
fn main() -> Result<(), Box<dyn std::error::Error>> {
25
let proto_dir = "../../proto/v1";
36

feos/proto/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
pub mod vm_service {
25
tonic::include_proto!("feos.vm.vmm.api.v1");
36
}

feos/services/host-service/src/api.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
use crate::Command;
25
use feos_proto::host_service::{
36
host_service_server::HostService, FeosLogEntry, GetCpuInfoRequest, GetCpuInfoResponse,

feos/services/host-service/src/dispatcher.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
use crate::{worker, Command, RestartSignal};
25
use feos_utils::feos_logger::LogHandle;
36
use log::info;

0 commit comments

Comments
 (0)