Skip to content

Commit

Permalink
Rexpand licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
pingerino committed Jul 5, 2017
1 parent 9e00d2d commit d03717c
Show file tree
Hide file tree
Showing 627 changed files with 6,604 additions and 355 deletions.
10 changes: 10 additions & 0 deletions Kconfig
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

mainmenu "CAmkES project configuration"

Expand Down
13 changes: 11 additions & 2 deletions README
@@ -1,5 +1,14 @@
<!--@TAG(DATA61_BSD)-->
#
<!--
Copyright 2017, Data61
Commonwealth Scientific and Industrial Research Organisation (CSIRO)
ABN 41 687 119 230.

This software may be distributed and modified according to the terms of
the BSD 2-Clause license. Note that NO WARRANTY is provided.
See "LICENSE_BSD2.txt" for details.

@TAG(DATA61_BSD)
-->

This repository contains various CAmkES applications, default configurations
and testing scripts.
Expand Down
10 changes: 10 additions & 0 deletions apps/adder/Kbuild
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

apps-$(CONFIG_APP_ADDER) += adder
adder: libsel4 libmuslc libsel4platsupport libsel4muslccamkes libsel4camkes libsel4sync libsel4bench
10 changes: 10 additions & 0 deletions apps/adder/Kconfig
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

config APP_ADDER
bool "Adder CAmkES application"
Expand Down
10 changes: 10 additions & 0 deletions apps/adder/Makefile
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

TARGETS := $(notdir ${SOURCE_DIR}).cdl
ADL := adder.camkes
Expand Down
12 changes: 11 additions & 1 deletion apps/adder/README
@@ -1,4 +1,14 @@
<!--@TAG(DATA61_BSD)-->
<!--
Copyright 2017, Data61
Commonwealth Scientific and Industrial Research Organisation (CSIRO)
ABN 41 687 119 230.

This software may be distributed and modified according to the terms of
the BSD 2-Clause license. Note that NO WARRANTY is provided.
See "LICENSE_BSD2.txt" for details.

@TAG(DATA61_BSD)
-->
#

This application demonstrates the use of dataport wrapper to pass pointers via CAmkES RPC
Expand Down
12 changes: 11 additions & 1 deletion apps/adder/adder.camkes
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

import <std_connector.camkes>;

Expand Down
12 changes: 11 additions & 1 deletion apps/adder/components/Adder/Adder.camkes
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

import "../../interfaces/Addition.idl4";

Expand Down
12 changes: 11 additions & 1 deletion apps/adder/components/Adder/include/payload.h
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

#ifndef _PAYLOAD_
#define _PAYLOAD_
Expand Down
12 changes: 11 additions & 1 deletion apps/adder/components/Adder/src/adder.c
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

#include <camkes.h>
#include <stdio.h>
Expand Down
12 changes: 11 additions & 1 deletion apps/adder/components/Client/Client.camkes
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

import "../../interfaces/Addition.idl4";

Expand Down
12 changes: 11 additions & 1 deletion apps/adder/components/Client/include/payload.h
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

#ifndef _PAYLOAD_
#define _PAYLOAD_
Expand Down
12 changes: 11 additions & 1 deletion apps/adder/components/Client/src/client.c
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

#include <camkes.h>
#include <stdio.h>
Expand Down
12 changes: 11 additions & 1 deletion apps/adder/interfaces/Addition.idl4
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

procedure Addition {
dataport_ptr_t calculate(in dataport_ptr_t ptr);
Expand Down
10 changes: 10 additions & 0 deletions apps/aeroplage/Kbuild
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

apps-$(CONFIG_APP_AEROPLAGE) += aeroplage
aeroplage: libsel4 libmuslc libsel4muslccamkes libsel4camkes libsel4sync libsel4bench libringbuffer libsel4bga libsel4keyboard
10 changes: 10 additions & 0 deletions apps/aeroplage/Kconfig
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

config APP_AEROPLAGE
bool "Multi-level secure terminal prototype (mark 1)"
Expand Down
10 changes: 10 additions & 0 deletions apps/aeroplage/Makefile
@@ -1,5 +1,15 @@
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#
#

TARGETS := $(notdir ${SOURCE_DIR}).cdl
ADL := aeroplage.camkes
Expand Down
12 changes: 11 additions & 1 deletion apps/aeroplage/README.md
@@ -1,4 +1,14 @@
<!--@TAG(DATA61_BSD)-->
<!--
Copyright 2017, Data61
Commonwealth Scientific and Industrial Research Organisation (CSIRO)
ABN 41 687 119 230.
This software may be distributed and modified according to the terms of
the BSD 2-Clause license. Note that NO WARRANTY is provided.
See "LICENSE_BSD2.txt" for details.
@TAG(DATA61_BSD)
-->
# Aeroplage - a prototype of a multilevel terminal

This application implements a prototype of a previous multilevel terminal for seL4. It currently
Expand Down
12 changes: 11 additions & 1 deletion apps/aeroplage/aeroplage.camkes
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

/* CAmkES ADL description of the system. Every system needs such a description
* that covers the component types, their instantiations, connections between
Expand Down
12 changes: 11 additions & 1 deletion apps/aeroplage/components/KeyboardDriver/driver.c
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

/* CAmkES provides a generated header that prototypes all the relevant generated
* symbols.
Expand Down
12 changes: 11 additions & 1 deletion apps/aeroplage/components/MockLinux/mocklinux.c
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

/* CAmkES provides a generated header that prototypes all the relevant
* generated symbols.
Expand Down
12 changes: 11 additions & 1 deletion apps/aeroplage/components/Switch/switch.c
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

/* CAmkES provides a generated header that prototypes all the relevant
* generated symbols.
Expand Down
12 changes: 11 additions & 1 deletion apps/aeroplage/components/VESADriver/chars.c
@@ -1,4 +1,14 @@
/* @TAG(DATA61_BSD) */
/*
* Copyright 2017, Data61
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
* ABN 41 687 119 230.
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(DATA61_BSD)
*/

#include <stdlib.h>
#define a_width 14
Expand Down
10 changes: 10 additions & 0 deletions apps/aeroplage/components/VESADriver/chars.sh
@@ -1,5 +1,15 @@
#!/bin/bash
#
# Copyright 2017, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the BSD 2-Clause license. Note that NO WARRANTY is provided.
# See "LICENSE_BSD2.txt" for details.
#
# @TAG(DATA61_BSD)
#

# Generate XBM representations of the characters from the font Nimbus Mono
# Regular.
Expand Down

0 comments on commit d03717c

Please sign in to comment.