Skip to content

Commit

Permalink
update license copyright note
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Apr 13, 2024
1 parent c1b8484 commit f1bf014
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BSD 3-Clause License

Copyright (c) 2024, Stephan Nolting
All rights reserved.
Copyright (c) NEORV32 contributors.
Copyright (c) 2020-2024, Stephan Nolting. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
7 changes: 6 additions & 1 deletion docs/legal.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ stnolting@gmail.com

**BSD 3-Clause License**

Copyright (c) 2024, Stephan Nolting. All rights reserved.
Copyright (c) NEORV32 contributors.
Copyright (c) 2020 - 2024, Stephan Nolting. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:
Expand All @@ -45,6 +46,10 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.

.SPDX Identifier
[NOTE]
`SPDX-License-Identifier: BSD-3-Clause`


<<<
// ####################################################################################################################
Expand Down
16 changes: 4 additions & 12 deletions sw/lib/source/neorv32_rte.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED #
// # OF THE POSSIBILITY OF SUCH DAMAGE. #
// # ********************************************************************************************* #
// # The NEORV32 Processor - https://github.com/stnolting/neorv32 (c) Stephan Nolting #
// # The NEORV32 RISC-V Processor - https://github.com/stnolting/neorv32 #
// #################################################################################################


Expand All @@ -42,11 +42,6 @@
#include "neorv32_rte.h"


// #################################################################################################
// RTE Core
// #################################################################################################


/**********************************************************************//**
* NEORV32 runtime environment (RTE):
* The >private< trap vector look-up table of the NEORV32 RTE.
Expand Down Expand Up @@ -472,11 +467,6 @@ void neorv32_rte_print_info(void) {
}


// #################################################################################################
// RTE Hardware Analysis Helpers
// #################################################################################################


/**********************************************************************//**
* NEORV32 runtime environment (RTE):
* Print hardware configuration information via UART0.
Expand Down Expand Up @@ -862,7 +852,8 @@ void neorv32_rte_print_license(void) {
"\n"
"BSD 3-Clause License\n"
"\n"
"Copyright (c) 2024, Stephan Nolting. All rights reserved.\n"
"Copyright (c) NEORV32 contributors.\n"
"Copyright (c) 2020 - 2024, Stephan Nolting. All rights reserved.\n"
"\n"
"Redistribution and use in source and binary forms, with or without modification, are\n"
"permitted provided that the following conditions are met:\n"
Expand All @@ -888,6 +879,7 @@ void neorv32_rte_print_license(void) {
"NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n"
"OF THE POSSIBILITY OF SUCH DAMAGE.\n"
"\n"
"SPDX-License-Identifier: BSD-3-Clause\n"
"\n"
);
}
Expand Down

0 comments on commit f1bf014

Please sign in to comment.