diff options
author | Andrew Waterman <waterman@cs.berkeley.edu> | 2013-03-25 16:51:32 -0700 |
---|---|---|
committer | Andrew Waterman <waterman@cs.berkeley.edu> | 2013-03-25 16:51:32 -0700 |
commit | accebe9e63daa56883c20b2fda6b5e72a74f412b (patch) | |
tree | 9ba8fe9a12e324c8d7450c581e78d5d63f2e0bdc | |
parent | 5ba0377b291ceb5d1e96674831cb6fd15eebf980 (diff) | |
download | pk-accebe9e63daa56883c20b2fda6b5e72a74f412b.zip pk-accebe9e63daa56883c20b2fda6b5e72a74f412b.tar.gz pk-accebe9e63daa56883c20b2fda6b5e72a74f412b.tar.bz2 |
add BSD license
-rw-r--r-- | pk/atomic.h | 2 | ||||
-rw-r--r-- | pk/elf.c | 2 | ||||
-rw-r--r-- | pk/elf.h | 2 | ||||
-rw-r--r-- | pk/entry.S | 2 | ||||
-rw-r--r-- | pk/file.c | 2 | ||||
-rw-r--r-- | pk/file.h | 2 | ||||
-rw-r--r-- | pk/fp.c | 2 | ||||
-rw-r--r-- | pk/fp.h | 2 | ||||
-rw-r--r-- | pk/fp_asm.S | 2 | ||||
-rw-r--r-- | pk/frontend.c | 2 | ||||
-rw-r--r-- | pk/frontend.h | 2 | ||||
-rw-r--r-- | pk/handlers.c | 2 | ||||
-rw-r--r-- | pk/init.c | 2 | ||||
-rw-r--r-- | pk/int.c | 2 | ||||
-rw-r--r-- | pk/memset.c | 2 | ||||
-rw-r--r-- | pk/pcr.h | 2 | ||||
-rw-r--r-- | pk/pk.S | 2 | ||||
-rw-r--r-- | pk/pk.h | 2 | ||||
-rw-r--r-- | pk/riscv-opc.h | 2 | ||||
-rw-r--r-- | pk/strlen.c | 2 | ||||
-rw-r--r-- | pk/syscall.c | 2 | ||||
-rw-r--r-- | pk/syscall.h | 2 |
22 files changed, 44 insertions, 0 deletions
diff --git a/pk/atomic.h b/pk/atomic.h index abd2e05..c0c1d84 100644 --- a/pk/atomic.h +++ b/pk/atomic.h @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #ifndef _RISCV_ATOMIC_H #define _RISCV_ATOMIC_H @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include <sys/stat.h> #include <fcntl.h> #include <elf.h> @@ -1,3 +1,5 @@ +// See LICENSE for license details. + // See LICENSE for details. #ifndef _ELF_H @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pcr.h" #ifdef __riscv64 @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include <string.h> #include <errno.h> #include "file.h" @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #ifndef _FILE_H #define _FILE_H @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pk.h" #include "pcr.h" #include "fp.h" @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #ifndef _FP_H #define _FP_H diff --git a/pk/fp_asm.S b/pk/fp_asm.S index 1701db1..046ef41 100644 --- a/pk/fp_asm.S +++ b/pk/fp_asm.S @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pcr.h" .text diff --git a/pk/frontend.c b/pk/frontend.c index 1818b0f..9614142 100644 --- a/pk/frontend.c +++ b/pk/frontend.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pk.h" #include "atomic.h" #include "frontend.h" diff --git a/pk/frontend.h b/pk/frontend.h index 86a8917..a3bc4de 100644 --- a/pk/frontend.h +++ b/pk/frontend.h @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #ifndef _RISCV_FRONTEND_H #define _RISCV_FRONTEND_H diff --git a/pk/handlers.c b/pk/handlers.c index dda707b..53b2b52 100644 --- a/pk/handlers.c +++ b/pk/handlers.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pcr.h" #include "pk.h" #include "config.h" @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pcr.h" #include "pk.h" #include "file.h" @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pk.h" #include "pcr.h" diff --git a/pk/memset.c b/pk/memset.c index d634138..56c0fa1 100644 --- a/pk/memset.c +++ b/pk/memset.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include <limits.h> #include <string.h> @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #ifndef _RISCV_PCR_H #define _RISCV_PCR_H @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "pcr.h" #include "pk.h" @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #ifndef _PK_H #define _PK_H diff --git a/pk/riscv-opc.h b/pk/riscv-opc.h index 7bad495..d42e6d3 100644 --- a/pk/riscv-opc.h +++ b/pk/riscv-opc.h @@ -1,3 +1,5 @@ +// See LICENSE for license details. + /* Automatically generated by parse-opcodes */ #define MATCH_MOVN 0x6f7 #define MASK_MOVN 0x1ffff diff --git a/pk/strlen.c b/pk/strlen.c index 12b3836..57794b7 100644 --- a/pk/strlen.c +++ b/pk/strlen.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include <string.h> #include <limits.h> diff --git a/pk/syscall.c b/pk/syscall.c index f4c4f92..711bb9e 100644 --- a/pk/syscall.c +++ b/pk/syscall.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include <machine/syscall.h> #include <string.h> #include <errno.h> diff --git a/pk/syscall.h b/pk/syscall.h index e45d1dd..d39a6a3 100644 --- a/pk/syscall.h +++ b/pk/syscall.h @@ -1,2 +1,4 @@ +// See LICENSE for license details. + #include <machine/syscall.h> |