diff --git a/Extensions/PCIKit/src/lib.rs b/Extensions/PCIKit/src/lib.rs index 2aba463..316bec5 100644 --- a/Extensions/PCIKit/src/lib.rs +++ b/Extensions/PCIKit/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![deny(warnings, clippy::nursery, unused_extern_crates)] diff --git a/Extensions/PCIKit/src/main.rs b/Extensions/PCIKit/src/main.rs index 019a11b..7598230 100644 --- a/Extensions/PCIKit/src/main.rs +++ b/Extensions/PCIKit/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![no_main] diff --git a/Extensions/SKTest/src/main.rs b/Extensions/SKTest/src/main.rs index fcce76a..3ae400c 100644 --- a/Extensions/SKTest/src/main.rs +++ b/Extensions/SKTest/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![no_main] diff --git a/Libraries/AMD64/src/cpuid.rs b/Libraries/AMD64/src/cpuid.rs index 40aa598..06e87e2 100644 --- a/Libraries/AMD64/src/cpuid.rs +++ b/Libraries/AMD64/src/cpuid.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use arrayvec::ArrayString; diff --git a/Libraries/AMD64/src/io/mod.rs b/Libraries/AMD64/src/io/mod.rs index a086162..a18e919 100644 --- a/Libraries/AMD64/src/io/mod.rs +++ b/Libraries/AMD64/src/io/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod port; pub mod serial; diff --git a/Libraries/AMD64/src/io/port.rs b/Libraries/AMD64/src/io/port.rs index 8afccb5..50daf40 100644 --- a/Libraries/AMD64/src/io/port.rs +++ b/Libraries/AMD64/src/io/port.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub trait PortIO: Sized { unsafe fn read(port: u16) -> Self; diff --git a/Libraries/AMD64/src/io/serial.rs b/Libraries/AMD64/src/io/serial.rs index fab143d..c00593e 100644 --- a/Libraries/AMD64/src/io/serial.rs +++ b/Libraries/AMD64/src/io/serial.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use num_enum::IntoPrimitive; diff --git a/Libraries/AMD64/src/lib.rs b/Libraries/AMD64/src/lib.rs index e527836..a6cfb24 100644 --- a/Libraries/AMD64/src/lib.rs +++ b/Libraries/AMD64/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![deny(warnings, clippy::nursery, unused_extern_crates)] diff --git a/Libraries/AMD64/src/msr/apic.rs b/Libraries/AMD64/src/msr/apic.rs index 5d96c61..18716d9 100644 --- a/Libraries/AMD64/src/msr/apic.rs +++ b/Libraries/AMD64/src/msr/apic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[bitfield(u64)] pub struct APICBase { diff --git a/Libraries/AMD64/src/msr/efer.rs b/Libraries/AMD64/src/msr/efer.rs index 0bccea8..5cf9843 100644 --- a/Libraries/AMD64/src/msr/efer.rs +++ b/Libraries/AMD64/src/msr/efer.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[bitfield(u64)] pub struct ExtendedFeatureEnableReg { diff --git a/Libraries/AMD64/src/msr/mod.rs b/Libraries/AMD64/src/msr/mod.rs index c2ef0f6..1087427 100644 --- a/Libraries/AMD64/src/msr/mod.rs +++ b/Libraries/AMD64/src/msr/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod apic; pub mod efer; diff --git a/Libraries/AMD64/src/msr/pat.rs b/Libraries/AMD64/src/msr/pat.rs index b2ffd3e..5d79a5e 100644 --- a/Libraries/AMD64/src/msr/pat.rs +++ b/Libraries/AMD64/src/msr/pat.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[derive(Debug, Default, Clone, Copy)] #[repr(u8)] diff --git a/Libraries/AMD64/src/msr/vm_cr.rs b/Libraries/AMD64/src/msr/vm_cr.rs index 55689e1..22e7dde 100644 --- a/Libraries/AMD64/src/msr/vm_cr.rs +++ b/Libraries/AMD64/src/msr/vm_cr.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[bitfield(u64)] pub struct VmCr { diff --git a/Libraries/AMD64/src/paging.rs b/Libraries/AMD64/src/paging.rs index 15e40cc..2e74210 100644 --- a/Libraries/AMD64/src/paging.rs +++ b/Libraries/AMD64/src/paging.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub const PAGE_SIZE: u64 = 0x1000; pub const PAGE_MASK: u64 = 0xFFF; diff --git a/Libraries/AMD64/src/spec/mod.rs b/Libraries/AMD64/src/spec/mod.rs index 74f4d70..ea8fb72 100644 --- a/Libraries/AMD64/src/spec/mod.rs +++ b/Libraries/AMD64/src/spec/mod.rs @@ -1,3 +1,3 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod mps; diff --git a/Libraries/AMD64/src/spec/mps.rs b/Libraries/AMD64/src/spec/mps.rs index 86c5f78..81c2efb 100644 --- a/Libraries/AMD64/src/spec/mps.rs +++ b/Libraries/AMD64/src/spec/mps.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[derive(Debug, Clone, Copy, PartialEq, Eq)] /// 2 bits diff --git a/Libraries/AMD64/tests/test_paging.rs b/Libraries/AMD64/tests/test_paging.rs index 6dbcdf7..caff53f 100644 --- a/Libraries/AMD64/tests/test_paging.rs +++ b/Libraries/AMD64/tests/test_paging.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![deny(warnings, clippy::nursery, unused_extern_crates)] diff --git a/Libraries/SkyBuffer/src/fb/mod.rs b/Libraries/SkyBuffer/src/fb/mod.rs index 53c5398..64d0ed3 100644 --- a/Libraries/SkyBuffer/src/fb/mod.rs +++ b/Libraries/SkyBuffer/src/fb/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod shapes; diff --git a/Libraries/SkyBuffer/src/fb/shapes/line.rs b/Libraries/SkyBuffer/src/fb/shapes/line.rs index a40860f..7908224 100644 --- a/Libraries/SkyBuffer/src/fb/shapes/line.rs +++ b/Libraries/SkyBuffer/src/fb/shapes/line.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. impl crate::fb::FrameBuffer { pub fn draw_line( diff --git a/Libraries/SkyBuffer/src/fb/shapes/mod.rs b/Libraries/SkyBuffer/src/fb/shapes/mod.rs index d6defb9..e1ba1b5 100644 --- a/Libraries/SkyBuffer/src/fb/shapes/mod.rs +++ b/Libraries/SkyBuffer/src/fb/shapes/mod.rs @@ -1,3 +1,3 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod line; diff --git a/Libraries/SkyBuffer/src/lib.rs b/Libraries/SkyBuffer/src/lib.rs index f03075e..3d58019 100644 --- a/Libraries/SkyBuffer/src/lib.rs +++ b/Libraries/SkyBuffer/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![deny(warnings, clippy::nursery, unused_extern_crates)] diff --git a/Libraries/SkyBuffer/src/pixel.rs b/Libraries/SkyBuffer/src/pixel.rs index 5b9e7bc..de58faf 100644 --- a/Libraries/SkyBuffer/src/pixel.rs +++ b/Libraries/SkyBuffer/src/pixel.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[repr(C)] #[derive(Debug, PartialEq, Eq, Clone, Copy)] diff --git a/Libraries/SkyBuffer/tests/test_pixel_colour.rs b/Libraries/SkyBuffer/tests/test_pixel_colour.rs index d320a99..3355762 100644 --- a/Libraries/SkyBuffer/tests/test_pixel_colour.rs +++ b/Libraries/SkyBuffer/tests/test_pixel_colour.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[test] pub fn color_rgba() { diff --git a/Libraries/SkyKit/src/lib.rs b/Libraries/SkyKit/src/lib.rs index 1670008..8596b02 100644 --- a/Libraries/SkyKit/src/lib.rs +++ b/Libraries/SkyKit/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![deny(warnings, clippy::nursery, unused_extern_crates)] diff --git a/Libraries/SkyKit/src/msg.rs b/Libraries/SkyKit/src/msg.rs index 3f6e592..6587e8b 100644 --- a/Libraries/SkyKit/src/msg.rs +++ b/Libraries/SkyKit/src/msg.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use serde::{Deserialize, Serialize}; diff --git a/Libraries/SkyKit/src/osdtentry.rs b/Libraries/SkyKit/src/osdtentry.rs index 8f99b51..7a2b04d 100644 --- a/Libraries/SkyKit/src/osdtentry.rs +++ b/Libraries/SkyKit/src/osdtentry.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::string::String; #[cfg(feature = "userspace")] diff --git a/Libraries/SkyKit/src/osvalue.rs b/Libraries/SkyKit/src/osvalue.rs index 4b6696f..a3ae0c5 100644 --- a/Libraries/SkyKit/src/osvalue.rs +++ b/Libraries/SkyKit/src/osvalue.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::{boxed::Box, string::String, vec::Vec}; diff --git a/Libraries/SkyKit/src/syscall.rs b/Libraries/SkyKit/src/syscall.rs index 433b975..93c87ea 100644 --- a/Libraries/SkyKit/src/syscall.rs +++ b/Libraries/SkyKit/src/syscall.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use num_enum::TryFromPrimitive; diff --git a/Libraries/SkyKit/src/userspace/allocator.rs b/Libraries/SkyKit/src/userspace/allocator.rs index 2f2a086..1b8d4c6 100644 --- a/Libraries/SkyKit/src/userspace/allocator.rs +++ b/Libraries/SkyKit/src/userspace/allocator.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use crate::syscall::SystemCall; diff --git a/Libraries/SkyKit/src/userspace/logger.rs b/Libraries/SkyKit/src/userspace/logger.rs index b6768d5..dbc522c 100644 --- a/Libraries/SkyKit/src/userspace/logger.rs +++ b/Libraries/SkyKit/src/userspace/logger.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::fmt::Write; diff --git a/Libraries/SkyKit/src/userspace/mod.rs b/Libraries/SkyKit/src/userspace/mod.rs index 49c4306..be21582 100644 --- a/Libraries/SkyKit/src/userspace/mod.rs +++ b/Libraries/SkyKit/src/userspace/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. mod allocator; pub mod logger; diff --git a/Libraries/SkyKit/src/userspace/panic.rs b/Libraries/SkyKit/src/userspace/panic.rs index 5520752..8728922 100644 --- a/Libraries/SkyKit/src/userspace/panic.rs +++ b/Libraries/SkyKit/src/userspace/panic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use crate::syscall::SystemCall; diff --git a/Libraries/SkyKit/src/userspace/port.rs b/Libraries/SkyKit/src/userspace/port.rs index ab21658..6cb52f8 100644 --- a/Libraries/SkyKit/src/userspace/port.rs +++ b/Libraries/SkyKit/src/userspace/port.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use crate::syscall::{AccessSize, SystemCall}; diff --git a/Libraries/SkyLiftKit/src/lib.rs b/Libraries/SkyLiftKit/src/lib.rs index e530dd6..9298c57 100644 --- a/Libraries/SkyLiftKit/src/lib.rs +++ b/Libraries/SkyLiftKit/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![deny(warnings, clippy::nursery, unused_extern_crates)] diff --git a/Sky/build.rs b/Sky/build.rs index d723886..1c0cb8c 100644 --- a/Sky/build.rs +++ b/Sky/build.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub fn main() { println!("cargo:rustc-link-arg-bins=-Tsrc/linker.ld"); diff --git a/Sky/src/acpi/apic/lvt.rs b/Sky/src/acpi/apic/lvt.rs index 67abd23..46841f1 100644 --- a/Sky/src/acpi/apic/lvt.rs +++ b/Sky/src/acpi/apic/lvt.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use super::DeliveryMode; diff --git a/Sky/src/acpi/apic/mod.rs b/Sky/src/acpi/apic/mod.rs index 01c0e09..f462e3e 100644 --- a/Sky/src/acpi/apic/mod.rs +++ b/Sky/src/acpi/apic/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use amd64::{ msr::{apic::APICBase, ModelSpecificReg}, diff --git a/Sky/src/acpi/ioapic.rs b/Sky/src/acpi/ioapic.rs index 3b9e9eb..10184c5 100644 --- a/Sky/src/acpi/ioapic.rs +++ b/Sky/src/acpi/ioapic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use amd64::spec::mps::{Polarity, TriggerMode}; diff --git a/Sky/src/acpi/madt.rs b/Sky/src/acpi/madt.rs index 811801d..784ac84 100644 --- a/Sky/src/acpi/madt.rs +++ b/Sky/src/acpi/madt.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::vec::Vec; diff --git a/Sky/src/acpi/mod.rs b/Sky/src/acpi/mod.rs index e20f26a..79fda5f 100644 --- a/Sky/src/acpi/mod.rs +++ b/Sky/src/acpi/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::vec::Vec; diff --git a/Sky/src/acpi/tables/hpet/mod.rs b/Sky/src/acpi/tables/hpet/mod.rs index 7e655f3..1dcd65d 100644 --- a/Sky/src/acpi/tables/hpet/mod.rs +++ b/Sky/src/acpi/tables/hpet/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![allow(dead_code)] diff --git a/Sky/src/acpi/tables/hpet/regs.rs b/Sky/src/acpi/tables/hpet/regs.rs index c3c627a..8b61cfd 100644 --- a/Sky/src/acpi/tables/hpet/regs.rs +++ b/Sky/src/acpi/tables/hpet/regs.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use num_enum::IntoPrimitive; diff --git a/Sky/src/acpi/tables/madt/ic/ioapic.rs b/Sky/src/acpi/tables/madt/ic/ioapic.rs index 10a2bed..3384436 100644 --- a/Sky/src/acpi/tables/madt/ic/ioapic.rs +++ b/Sky/src/acpi/tables/madt/ic/ioapic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use num_enum::IntoPrimitive; diff --git a/Sky/src/acpi/tables/madt/ic/mod.rs b/Sky/src/acpi/tables/madt/ic/mod.rs index c399a92..147bf51 100644 --- a/Sky/src/acpi/tables/madt/ic/mod.rs +++ b/Sky/src/acpi/tables/madt/ic/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use self::{ ioapic::{InputOutputAPIC, IntrSourceOverride, NMISource}, diff --git a/Sky/src/acpi/tables/madt/ic/proc_lapic.rs b/Sky/src/acpi/tables/madt/ic/proc_lapic.rs index 9769406..6cfc2e1 100644 --- a/Sky/src/acpi/tables/madt/ic/proc_lapic.rs +++ b/Sky/src/acpi/tables/madt/ic/proc_lapic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[bitfield(u32)] pub struct ProcessorLAPICFlags { diff --git a/Sky/src/acpi/tables/madt/mod.rs b/Sky/src/acpi/tables/madt/mod.rs index eb2d9c9..1626b15 100644 --- a/Sky/src/acpi/tables/madt/mod.rs +++ b/Sky/src/acpi/tables/madt/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::mem::size_of; diff --git a/Sky/src/acpi/tables/mod.rs b/Sky/src/acpi/tables/mod.rs index 4aa0ec2..fc89935 100644 --- a/Sky/src/acpi/tables/mod.rs +++ b/Sky/src/acpi/tables/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod hpet; pub mod madt; diff --git a/Sky/src/acpi/tables/rsdp.rs b/Sky/src/acpi/tables/rsdp.rs index cf35d1a..2492f20 100644 --- a/Sky/src/acpi/tables/rsdp.rs +++ b/Sky/src/acpi/tables/rsdp.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::mem::size_of; diff --git a/Sky/src/acpi/tables/rsdt.rs b/Sky/src/acpi/tables/rsdt.rs index fcdc94a..4b05d34 100644 --- a/Sky/src/acpi/tables/rsdt.rs +++ b/Sky/src/acpi/tables/rsdt.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[derive(Debug)] #[repr(transparent)] diff --git a/Sky/src/acpi/tables/xsdt.rs b/Sky/src/acpi/tables/xsdt.rs index afd4b53..5d5d78f 100644 --- a/Sky/src/acpi/tables/xsdt.rs +++ b/Sky/src/acpi/tables/xsdt.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[derive(Debug)] #[repr(transparent)] diff --git a/Sky/src/bitmap.rs b/Sky/src/bitmap.rs index 71bb049..aa922de 100644 --- a/Sky/src/bitmap.rs +++ b/Sky/src/bitmap.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[inline] pub const fn bit_test(bitmap: &[u64], index: u64) -> bool { diff --git a/Sky/src/incr_id.rs b/Sky/src/incr_id.rs index 9da109a..6b68186 100644 --- a/Sky/src/incr_id.rs +++ b/Sky/src/incr_id.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::vec::Vec; diff --git a/Sky/src/interrupts/idt/isr.rs b/Sky/src/interrupts/idt/isr.rs index 5dfc7f8..8912060 100644 --- a/Sky/src/interrupts/idt/isr.rs +++ b/Sky/src/interrupts/idt/isr.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. macro_rules! isr_stub { ($err:expr, $i:expr) => { diff --git a/Sky/src/interrupts/idt/mod.rs b/Sky/src/interrupts/idt/mod.rs index 5580ccb..1866a40 100644 --- a/Sky/src/interrupts/idt/mod.rs +++ b/Sky/src/interrupts/idt/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::cell::SyncUnsafeCell; diff --git a/Sky/src/interrupts/mod.rs b/Sky/src/interrupts/mod.rs index 0d1d0cc..eabbe35 100644 --- a/Sky/src/interrupts/mod.rs +++ b/Sky/src/interrupts/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use amd64::io::port::Port; diff --git a/Sky/src/interrupts/pic.rs b/Sky/src/interrupts/pic.rs index d2cc6ac..d811c20 100644 --- a/Sky/src/interrupts/pic.rs +++ b/Sky/src/interrupts/pic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use amd64::io::port::Port; diff --git a/Sky/src/linker.ld b/Sky/src/linker.ld index 42a66fb..dbf9409 100644 --- a/Sky/src/linker.ld +++ b/Sky/src/linker.ld @@ -1,4 +1,4 @@ -/* Copyright (c) ChefKiss Inc 2021-2023. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. */ +/* Copyright (c) ChefKiss 2021-2023. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. */ ENTRY(kernel_main); OUTPUT_ARCH(x86-64); diff --git a/Sky/src/logger.rs b/Sky/src/logger.rs index b5ac7c2..5d67b89 100644 --- a/Sky/src/logger.rs +++ b/Sky/src/logger.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::fmt::Write; diff --git a/Sky/src/main.rs b/Sky/src/main.rs index f01be89..30221ca 100644 --- a/Sky/src/main.rs +++ b/Sky/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![no_main] @@ -120,7 +120,7 @@ extern "C" fn kernel_main(boot_info: &'static skyliftkit::BootInfo) -> ! { logger::init(); assert_eq!(boot_info.revision, skyliftkit::CURRENT_REVISION); init_core(boot_info); - debug!("Copyright ChefKiss Inc 2021-2024."); + debug!("Copyright ChefKiss 2021-2024."); let state = unsafe { &mut *crate::system::state::SYS_STATE.get() }; state.terminal = boot_info.frame_buffer.map(|fb_info| { diff --git a/Sky/src/system/allocator.rs b/Sky/src/system/allocator.rs index 7acf7c3..2f57eee 100644 --- a/Sky/src/system/allocator.rs +++ b/Sky/src/system/allocator.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[global_allocator] static GLOBAL_ALLOCATOR: KernAllocator = KernAllocator; diff --git a/Sky/src/system/exceptions/gdt.rs b/Sky/src/system/exceptions/gdt.rs index e28f006..fb3961d 100644 --- a/Sky/src/system/exceptions/gdt.rs +++ b/Sky/src/system/exceptions/gdt.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use crate::system::RegisterState; diff --git a/Sky/src/system/exceptions/generic.rs b/Sky/src/system/exceptions/generic.rs index 0602fe4..8095895 100644 --- a/Sky/src/system/exceptions/generic.rs +++ b/Sky/src/system/exceptions/generic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. super::generic_exception!(div_by_zero, "division by zero"); super::generic_exception!(debug, "debug"); diff --git a/Sky/src/system/exceptions/mod.rs b/Sky/src/system/exceptions/mod.rs index 2553063..9396bde 100644 --- a/Sky/src/system/exceptions/mod.rs +++ b/Sky/src/system/exceptions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. macro_rules! exception_msg { ($name:expr, $msg:expr, $regs:expr) => { diff --git a/Sky/src/system/exceptions/page_fault.rs b/Sky/src/system/exceptions/page_fault.rs index b22f2ad..ba52be0 100644 --- a/Sky/src/system/exceptions/page_fault.rs +++ b/Sky/src/system/exceptions/page_fault.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub unsafe extern "sysv64" fn page_fault(regs: &mut crate::system::RegisterState) { let mut cr2: u64; diff --git a/Sky/src/system/fkext.rs b/Sky/src/system/fkext.rs index 81742a4..2b9677d 100644 --- a/Sky/src/system/fkext.rs +++ b/Sky/src/system/fkext.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::vec::Vec; use core::hash::Hash; diff --git a/Sky/src/system/gdt.rs b/Sky/src/system/gdt.rs index 301a2f1..0a50a0a 100644 --- a/Sky/src/system/gdt.rs +++ b/Sky/src/system/gdt.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::cell::SyncUnsafeCell; diff --git a/Sky/src/system/mod.rs b/Sky/src/system/mod.rs index a95ed72..7d7a6a0 100644 --- a/Sky/src/system/mod.rs +++ b/Sky/src/system/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod allocator; pub mod exceptions; diff --git a/Sky/src/system/panic.rs b/Sky/src/system/panic.rs index 63fcd83..27c7509 100644 --- a/Sky/src/system/panic.rs +++ b/Sky/src/system/panic.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use unwinding::abi::{UnwindContext, UnwindReasonCode, _Unwind_Backtrace, _Unwind_GetIP}; diff --git a/Sky/src/system/pmm.rs b/Sky/src/system/pmm.rs index dbe80f2..cbc1b7d 100644 --- a/Sky/src/system/pmm.rs +++ b/Sky/src/system/pmm.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use amd64::paging::PAGE_SIZE; use skyliftkit::{MemoryData, MemoryEntry}; diff --git a/Sky/src/system/serial.rs b/Sky/src/system/serial.rs index 8eef790..23ba808 100644 --- a/Sky/src/system/serial.rs +++ b/Sky/src/system/serial.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub struct SerialWriter(amd64::io::serial::SerialPort); diff --git a/Sky/src/system/state.rs b/Sky/src/system/state.rs index 5892233..a8767cb 100644 --- a/Sky/src/system/state.rs +++ b/Sky/src/system/state.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::{boxed::Box, string::String, vec::Vec}; use core::cell::SyncUnsafeCell; diff --git a/Sky/src/system/tasking/mod.rs b/Sky/src/system/tasking/mod.rs index 5c630ee..b3c832b 100644 --- a/Sky/src/system/tasking/mod.rs +++ b/Sky/src/system/tasking/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::{boxed::Box, collections::VecDeque, string::String, vec::Vec}; diff --git a/Sky/src/system/tasking/scheduler.rs b/Sky/src/system/tasking/scheduler.rs index 376096c..1d037ba 100644 --- a/Sky/src/system/tasking/scheduler.rs +++ b/Sky/src/system/tasking/scheduler.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::{string::String, vec::Vec}; use core::{cell::SyncUnsafeCell, ops::ControlFlow}; diff --git a/Sky/src/system/tasking/userland/handlers/alloc.rs b/Sky/src/system/tasking/userland/handlers/alloc.rs index c0b96ae..3a1ca52 100644 --- a/Sky/src/system/tasking/userland/handlers/alloc.rs +++ b/Sky/src/system/tasking/userland/handlers/alloc.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::ops::ControlFlow; diff --git a/Sky/src/system/tasking/userland/handlers/mod.rs b/Sky/src/system/tasking/userland/handlers/mod.rs index 63cde5d..1a099bd 100644 --- a/Sky/src/system/tasking/userland/handlers/mod.rs +++ b/Sky/src/system/tasking/userland/handlers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::{fmt::Write, ops::ControlFlow}; diff --git a/Sky/src/system/tasking/userland/handlers/msg.rs b/Sky/src/system/tasking/userland/handlers/msg.rs index 6f95971..329bb8c 100644 --- a/Sky/src/system/tasking/userland/handlers/msg.rs +++ b/Sky/src/system/tasking/userland/handlers/msg.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::ops::ControlFlow; diff --git a/Sky/src/system/tasking/userland/handlers/os_dt_entry.rs b/Sky/src/system/tasking/userland/handlers/os_dt_entry.rs index 3c3d38f..b34c811 100644 --- a/Sky/src/system/tasking/userland/handlers/os_dt_entry.rs +++ b/Sky/src/system/tasking/userland/handlers/os_dt_entry.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::ops::ControlFlow; diff --git a/Sky/src/system/tasking/userland/handlers/port.rs b/Sky/src/system/tasking/userland/handlers/port.rs index 6da3719..f0655f0 100644 --- a/Sky/src/system/tasking/userland/handlers/port.rs +++ b/Sky/src/system/tasking/userland/handlers/port.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::ops::ControlFlow; diff --git a/Sky/src/system/tasking/userland/mod.rs b/Sky/src/system/tasking/userland/mod.rs index fd5d1ab..2afb63b 100644 --- a/Sky/src/system/tasking/userland/mod.rs +++ b/Sky/src/system/tasking/userland/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::ops::ControlFlow; diff --git a/Sky/src/system/tasking/userland/page_table.rs b/Sky/src/system/tasking/userland/page_table.rs index 1096a07..0573a2e 100644 --- a/Sky/src/system/tasking/userland/page_table.rs +++ b/Sky/src/system/tasking/userland/page_table.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::boxed::Box; diff --git a/Sky/src/system/terminal/font.rs b/Sky/src/system/terminal/font.rs index b7a39c2..c1e1793 100644 --- a/Sky/src/system/terminal/font.rs +++ b/Sky/src/system/terminal/font.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub const FONT_WIDTH: usize = 10; pub const FONT_HEIGHT: usize = 17; diff --git a/Sky/src/system/terminal/mod.rs b/Sky/src/system/terminal/mod.rs index d65232c..8396f65 100644 --- a/Sky/src/system/terminal/mod.rs +++ b/Sky/src/system/terminal/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use core::fmt::Write; diff --git a/Sky/src/system/tss.rs b/Sky/src/system/tss.rs index da21ec0..e15dc48 100644 --- a/Sky/src/system/tss.rs +++ b/Sky/src/system/tss.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #[derive(Debug, Copy, Clone)] #[repr(C, packed)] diff --git a/Sky/src/system/vmm.rs b/Sky/src/system/vmm.rs index b3ed6ad..fe3e4cf 100644 --- a/Sky/src/system/vmm.rs +++ b/Sky/src/system/vmm.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::boxed::Box; diff --git a/Sky/src/timer/hpet.rs b/Sky/src/timer/hpet.rs index 7068dc9..7a6ceea 100644 --- a/Sky/src/timer/hpet.rs +++ b/Sky/src/timer/hpet.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use crate::acpi::tables::hpet::{regs::GeneralConfiguration, Hpet as HpetInner}; diff --git a/Sky/src/timer/mod.rs b/Sky/src/timer/mod.rs index c0b3874..d06175c 100644 --- a/Sky/src/timer/mod.rs +++ b/Sky/src/timer/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod hpet; pub mod pit; diff --git a/Sky/src/timer/pit.rs b/Sky/src/timer/pit.rs index 8d33b82..159832b 100644 --- a/Sky/src/timer/pit.rs +++ b/Sky/src/timer/pit.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use amd64::io::port::Port; diff --git a/SkyLift/src/helpers/elf.rs b/SkyLift/src/helpers/elf.rs index b7ec4a4..3889fcc 100644 --- a/SkyLift/src/helpers/elf.rs +++ b/SkyLift/src/helpers/elf.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::{borrow::ToOwned, boxed::Box, vec::Vec}; diff --git a/SkyLift/src/helpers/fb.rs b/SkyLift/src/helpers/fb.rs index 6baa868..88ec4bd 100644 --- a/SkyLift/src/helpers/fb.rs +++ b/SkyLift/src/helpers/fb.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::boxed::Box; diff --git a/SkyLift/src/helpers/mem.rs b/SkyLift/src/helpers/mem.rs index 69109f8..6c393cf 100644 --- a/SkyLift/src/helpers/mem.rs +++ b/SkyLift/src/helpers/mem.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::vec::Vec; diff --git a/SkyLift/src/helpers/mod.rs b/SkyLift/src/helpers/mod.rs index 9e492cb..e21c2d8 100644 --- a/SkyLift/src/helpers/mod.rs +++ b/SkyLift/src/helpers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. pub mod elf; pub mod fb; diff --git a/SkyLift/src/helpers/setup.rs b/SkyLift/src/helpers/setup.rs index 8071f4e..01b0885 100644 --- a/SkyLift/src/helpers/setup.rs +++ b/SkyLift/src/helpers/setup.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. use alloc::boxed::Box; diff --git a/SkyLift/src/main.rs b/SkyLift/src/main.rs index bef7a9a..6312234 100644 --- a/SkyLift/src/main.rs +++ b/SkyLift/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![no_std] #![no_main] diff --git a/Utilities/SKCacheBuilder/src/main.rs b/Utilities/SKCacheBuilder/src/main.rs index 2b3ea13..4c1f10e 100644 --- a/Utilities/SKCacheBuilder/src/main.rs +++ b/Utilities/SKCacheBuilder/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (c) ChefKiss Inc 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. +// Copyright (c) ChefKiss 2021-2024. Licensed under the Thou Shalt Not Profit License version 1.5. See LICENSE for details. #![deny(warnings, clippy::nursery, unused_extern_crates)]