Skip to content

Commit

Permalink
Add missing license headers and update copyright year (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Oct 2, 2016
1 parent 51e19d1 commit a049249
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 15 deletions.
2 changes: 1 addition & 1 deletion 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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/arch/x86_64/boot.asm
@@ -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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/arch/x86_64/grub.cfg
@@ -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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/arch/x86_64/linker.ld
@@ -1,5 +1,5 @@
/*
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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/arch/x86_64/long_mode_init.asm
@@ -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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/arch/x86_64/multiboot_header.asm
@@ -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 <LICENSE-APACHE or
Expand Down
9 changes: 9 additions & 0 deletions src/interrupts/idt.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 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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]);
Expand Down
9 changes: 9 additions & 0 deletions 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 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

mod idt;

macro_rules! save_scratch_registers {
Expand Down
2 changes: 1 addition & 1 deletion 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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/area_frame_allocator.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/mod.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/paging/entry.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/paging/mapper.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/paging/mod.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/paging/table.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/memory/paging/temporary_page.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion src/vga_buffer.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 <LICENSE-APACHE or
Expand Down

0 comments on commit a049249

Please sign in to comment.