From b050b475f79718f79b60116a3b83cb16e45c3021 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 2 Oct 2016 18:20:48 +0200 Subject: [PATCH] Add missing license headers and update copyright year (#232) (cherry picked from commit a04924955a08257c2fb60bd3eefabfa1021602d1) --- Makefile | 2 +- src/arch/x86_64/boot.asm | 2 +- src/arch/x86_64/grub.cfg | 2 +- src/arch/x86_64/linker.ld | 2 +- src/arch/x86_64/long_mode_init.asm | 2 +- src/arch/x86_64/multiboot_header.asm | 2 +- src/interrupts/idt.rs | 9 +++++++++ src/interrupts/mod.rs | 9 +++++++++ src/lib.rs | 2 +- src/memory/area_frame_allocator.rs | 2 +- src/memory/mod.rs | 2 +- src/memory/paging/entry.rs | 2 +- src/memory/paging/mapper.rs | 2 +- src/memory/paging/mod.rs | 2 +- src/memory/paging/table.rs | 2 +- src/memory/paging/temporary_page.rs | 2 +- src/vga_buffer.rs | 2 +- 17 files changed, 33 insertions(+), 15 deletions(-) diff --git a/Makefile b/Makefile index e8ca5629..8fb6cdfa 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright 2015 Philipp Oppermann. See the README.md +# Copyright 2016 Philipp Oppermann. See the README.md # file at the top-level directory of this distribution. # # Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + use x86::segmentation::{self, SegmentSelector}; pub struct Idt([Entry; 16]); diff --git a/src/interrupts/mod.rs b/src/interrupts/mod.rs index 07d19874..99b850fa 100644 --- a/src/interrupts/mod.rs +++ b/src/interrupts/mod.rs @@ -1,3 +1,12 @@ +// Copyright 2016 Philipp Oppermann. See the README.md +// file at the top-level directory of this distribution. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + mod idt; lazy_static! { diff --git a/src/lib.rs b/src/lib.rs index 7a35129e..fc1ebef5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2015 Philipp Oppermann. See the README.md +// Copyright 2016 Philipp Oppermann. See the README.md // file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0