Skip to content

Commit 4b3228b

Browse files
committed
Add license qualifiers.
1 parent 1d96bf1 commit 4b3228b

10 files changed

Lines changed: 10 additions & 3 deletions

File tree

bootloader/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "bootloader"
33
version = "0.0.1"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
6+
license = "MIT OR Apache-2.0"
67

78
[dependencies]
89
## Internal dependencies

kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77

88
description = "Experimental OS kernel"
99
readme = "README.md"
10-
license = "MIT"
10+
license = "MIT OR Apache-2.0"
1111
build = "build.rs"
1212
edition = "2018"
1313

lib/apic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.1"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
description = "ACPI drivers."
66
readme = "README.md"
7-
license = "MIT"
7+
license = "MIT OR Apache-2.0"
88
keywords = ["os", "acpi", "irq", "driver", "x86"]
99
edition = "2018"
1010

lib/bootloader_shared/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "bootloader_shared"
33
version = "0.0.1"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
6+
license = "MIT OR Apache-2.0"
67

78
[dependencies]
89
x86 = { path = "../x86" }

lib/ctest/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "test"
33
version = "0.0.1"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
6+
license = "MIT OR Apache-2.0"
67

78
[dependencies]
89
klogger = { path = "../klogger" }

lib/kpi/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "kpi"
33
version = "0.1.0"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
6+
license = "MIT OR Apache-2.0"
67

78
[dependencies]
89
x86 = { path = "../x86" }

lib/lineup/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "lineup"
33
version = "0.0.1"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
6+
license = "MIT OR Apache-2.0"
67

78
[dependencies]
89
crossbeam-utils = { version = "0.6", default-features = false }

lib/rumpkernel

lib/vibrio/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
66
description = "A small user-space runtime that interacts with the bespin kernel."
77
build = "build.rs"
8+
license = "MIT OR Apache-2.0"
89

910
[lib]
1011
name = "vibrio"

usr/init/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
55
edition = "2018"
66
build = "build.rs"
7+
license = "MIT OR Apache-2.0"
78

89
[[bin]]
910
name = "init"

0 commit comments

Comments
 (0)