Browse Source

add BSD license

eos20
Andrew Waterman 13 years ago
parent
commit
accebe9e63
  1. 2
      pk/atomic.h
  2. 2
      pk/elf.c
  3. 2
      pk/elf.h
  4. 2
      pk/entry.S
  5. 2
      pk/file.c
  6. 2
      pk/file.h
  7. 2
      pk/fp.c
  8. 2
      pk/fp.h
  9. 2
      pk/fp_asm.S
  10. 2
      pk/frontend.c
  11. 2
      pk/frontend.h
  12. 2
      pk/handlers.c
  13. 2
      pk/init.c
  14. 2
      pk/int.c
  15. 2
      pk/memset.c
  16. 2
      pk/pcr.h
  17. 2
      pk/pk.S
  18. 2
      pk/pk.h
  19. 2
      pk/riscv-opc.h
  20. 2
      pk/strlen.c
  21. 2
      pk/syscall.c
  22. 2
      pk/syscall.h

2
pk/atomic.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _RISCV_ATOMIC_H
#define _RISCV_ATOMIC_H

2
pk/elf.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <sys/stat.h>
#include <fcntl.h>
#include <elf.h>

2
pk/elf.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
// See LICENSE for details.
#ifndef _ELF_H

2
pk/entry.S

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pcr.h"
#ifdef __riscv64

2
pk/file.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <string.h>
#include <errno.h>
#include "file.h"

2
pk/file.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _FILE_H
#define _FILE_H

2
pk/fp.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pk.h"
#include "pcr.h"
#include "fp.h"

2
pk/fp.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _FP_H
#define _FP_H

2
pk/fp_asm.S

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pcr.h"
.text

2
pk/frontend.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pk.h"
#include "atomic.h"
#include "frontend.h"

2
pk/frontend.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _RISCV_FRONTEND_H
#define _RISCV_FRONTEND_H

2
pk/handlers.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pcr.h"
#include "pk.h"
#include "config.h"

2
pk/init.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pcr.h"
#include "pk.h"
#include "file.h"

2
pk/int.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pk.h"
#include "pcr.h"

2
pk/memset.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <limits.h>
#include <string.h>

2
pk/pcr.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _RISCV_PCR_H
#define _RISCV_PCR_H

2
pk/pk.S

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "pcr.h"
#include "pk.h"

2
pk/pk.h

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _PK_H
#define _PK_H

2
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

2
pk/strlen.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <string.h>
#include <limits.h>

2
pk/syscall.c

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <machine/syscall.h>
#include <string.h>
#include <errno.h>

2
pk/syscall.h

@ -1,2 +1,4 @@
// See LICENSE for license details.
#include <machine/syscall.h>

Loading…
Cancel
Save