From a04924955a08257c2fb60bd3eefabfa1021602d1 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) --- 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 8ed10e51..fcc3f4e7 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 d3d441d2..4a148d8e 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; macro_rules! save_scratch_registers { diff --git a/src/lib.rs b/src/lib.rs index 213dcb39..2fe895a4 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