Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add copyright header #718

Merged
merged 1 commit into from
Jun 21, 2024
Merged
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
4 changes: 4 additions & 0 deletions devtools/td-layout-config/src/image.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) 2024 Intel Corporation
//
// SPDX-License-Identifier: BSD-2-Clause-Patent

use serde::Deserialize;

use super::{layout::LayoutConfig, render};
Expand Down
4 changes: 4 additions & 0 deletions devtools/td-layout-config/src/memory.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) 2024 Intel Corporation
//
// SPDX-License-Identifier: BSD-2-Clause-Patent

use serde::Deserialize;

use super::{layout::LayoutConfig, render};
Expand Down
4 changes: 4 additions & 0 deletions td-layout/src/runtime/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
// Copyright (c) 2024 Intel Corporation
//
// SPDX-License-Identifier: BSD-2-Clause-Patent

pub mod exec;
pub mod linux;
4 changes: 4 additions & 0 deletions td-payload/src/arch/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
// Copyright (c) 2024 Intel Corporation
//
// SPDX-License-Identifier: BSD-2-Clause-Patent

mod x86_64;
pub use self::x86_64::*;
4 changes: 4 additions & 0 deletions td-shim-interface/src/td_uefi_pi/pi/guid.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) 2024 Intel Corporation
//
// SPDX-License-Identifier: BSD-2-Clause-Patent

use core::{convert::TryInto, mem::size_of, ptr::slice_from_raw_parts, str::FromStr};

use scroll::{Pread, Pwrite};
Expand Down
4 changes: 4 additions & 0 deletions td-shim/src/bin/td-shim/payload_hob.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) 2024 Intel Corporation
//
// SPDX-License-Identifier: BSD-2-Clause-Patent

use crate::e820::E820Table;
use crate::ipl;
use crate::memory;
Expand Down