From 16476bd8219f58417a401ea0a720d9588d1d8ebc Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Mon, 9 Jul 2018 15:46:24 -0700 Subject: Properly license all nontrivial files --- bbl/bbl.ac | 2 ++ bbl/bbl.c | 2 ++ bbl/bbl.lds | 2 ++ bbl/bbl.mk.in | 2 ++ bbl/logo.c | 2 ++ bbl/payload.S | 2 ++ bbl/raw_logo.S | 2 ++ 7 files changed, 14 insertions(+) (limited to 'bbl') diff --git a/bbl/bbl.ac b/bbl/bbl.ac index 55ff50b..b803ae9 100644 --- a/bbl/bbl.ac +++ b/bbl/bbl.ac @@ -1,3 +1,5 @@ +# See LICENSE for license details. + AC_ARG_ENABLE([logo], AS_HELP_STRING([--enable-logo], [Enable boot logo])) AS_IF([test "x$enable_logo" == "xyes"], [ AC_DEFINE([PK_ENABLE_LOGO],,[Define if the RISC-V logo is to be displayed]) diff --git a/bbl/bbl.c b/bbl/bbl.c index 93746ff..6363d0a 100644 --- a/bbl/bbl.c +++ b/bbl/bbl.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "bbl.h" #include "mtrap.h" #include "atomic.h" diff --git a/bbl/bbl.lds b/bbl/bbl.lds index 2fd0d7c..26f5816 100644 --- a/bbl/bbl.lds +++ b/bbl/bbl.lds @@ -1,3 +1,5 @@ +/* See LICENSE for license details. */ + OUTPUT_ARCH( "riscv" ) ENTRY( reset_vector ) diff --git a/bbl/bbl.mk.in b/bbl/bbl.mk.in index 2bc96e1..4d40987 100644 --- a/bbl/bbl.mk.in +++ b/bbl/bbl.mk.in @@ -1,3 +1,5 @@ +# See LICENSE for license details. + bbl_subproject_deps = \ util \ softfloat \ diff --git a/bbl/logo.c b/bbl/logo.c index fcd43ec..3963e43 100644 --- a/bbl/logo.c +++ b/bbl/logo.c @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include #include "mtrap.h" diff --git a/bbl/payload.S b/bbl/payload.S index b6797aa..9f79430 100644 --- a/bbl/payload.S +++ b/bbl/payload.S @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "config.h" #include "encoding.h" diff --git a/bbl/raw_logo.S b/bbl/raw_logo.S index bddf8f4..0eaf6cc 100644 --- a/bbl/raw_logo.S +++ b/bbl/raw_logo.S @@ -1,3 +1,5 @@ +// See LICENSE for license details. + #include "encoding.h" .section .rodata -- cgit v1.1