Skip to content

Commit

Permalink
Add licensing information for some misc files
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Oct 24, 2023
1 parent 31be4af commit e8bb459
Show file tree
Hide file tree
Showing 14 changed files with 80 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/examples/microkit/banscii/banscii.system
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2023, Colias Group, LLC
SPDX-License-Identifier: BSD-2-Clause
-->
<system>

<memory_region name="pl011_mmio" size="0x1000" phys_addr="0x9000000" />
Expand Down
5 changes: 5 additions & 0 deletions crates/examples/microkit/hello/hello.system
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2023, Colias Group, LLC
SPDX-License-Identifier: BSD-2-Clause
-->
<system>
<protection_domain name="hello" priority="254">
<program_image path="microkit-hello.elf" />
Expand Down
5 changes: 5 additions & 0 deletions crates/examples/microkit/http-server/http-server.system
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2023, Colias Group, LLC
SPDX-License-Identifier: BSD-2-Clause
-->
<system>
<memory_region name="sp804_mmio" size="0x1000" phys_addr="0x90d0000" />

Expand Down
6 changes: 6 additions & 0 deletions crates/private/tests/capdl/threads/cdl.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

from capdl import ObjectType, Cap
from capdl_simple_composition import BaseComposition, ElfComponent

Expand Down
6 changes: 6 additions & 0 deletions crates/private/tests/capdl/utcover/cdl.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

from capdl import ObjectType, Cap
from capdl_simple_composition import BaseComposition, ElfComponent

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2023, Colias Group, LLC
SPDX-License-Identifier: BSD-2-Clause
-->
<system>

<protection_domain name="client" priority="253">
Expand Down
6 changes: 6 additions & 0 deletions crates/private/tests/root-task/c/cbits/test.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright 2023, Colias Group, LLC
*
* SPDX-License-Identifier: BSD-2-Clause
*/

#include <stdlib.h>

int test(const char *s) {
Expand Down
6 changes: 6 additions & 0 deletions crates/sel4/bitfield-parser/grammar.pest
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//
// Copyright 2023, Colias Group, LLC
//
// SPDX-License-Identifier: BSD-2-Clause
//

file = { SOI ~ (entity)* ~ EOI }

entity = { base | block | tagged_union }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

import sys
import json
import toml
Expand Down
6 changes: 6 additions & 0 deletions hacking/nix/scope/plat-utils/qemu/automate_simple.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

import sys
import argparse
import pexpect
Expand Down
6 changes: 6 additions & 0 deletions hacking/nix/scope/sel4test/automate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

import sys
import argparse
import pexpect
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

import sys
import argparse
import pexpect
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

import sys
import time
import argparse
Expand Down
6 changes: 6 additions & 0 deletions hacking/other-tests/registry/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//
// Copyright 2023, Colias Group, LLC
//
// SPDX-License-Identifier: BSD-2-Clause
//

#![no_std]

use sel4;

0 comments on commit e8bb459

Please sign in to comment.