Skip to content

Commit a705b79

Browse files
committed
Added license lint
1 parent eaefe32 commit a705b79

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+302
-1
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright lowRISC contributors.
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
14
rtl/bus/tl_main_pkg.sv linguist-generated=true
25
rtl/bus/tl_ifetch_pkg.sv linguist-generated=true
36
rtl/bus/xbar_main.sv linguist-generated=true

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright lowRISC contributors.
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
14
name: CI
25

36
on:

.github/workflows/site.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright lowRISC contributors.
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
14
name: Deploy to GitHub Pages
25

36
# Deploy on pushes to the main branch

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright lowRISC contributors.
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
14
target/
25

36
# FuseSoC and Sofware builds are placed in build

.reuse/dep5

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
3+
Files: README.md
4+
*.lock
5+
*.md
6+
data/*
7+
doc/*
8+
sw/cheri/sim_boot_stub/sim_boot_stub
9+
vendor/lowrisc_ip/*
10+
vendor/lowrisc_ibex/*
11+
vendor/patches/*
12+
Copyright: lowRISC contributors
13+
License: Apache-2.0
14+
15+
Files: vendor/display_drivers/*
16+
Copyright: 2022 Douglas Reis
17+
License: Apache-2.0
18+
19+
Files: vendor/cheriot_safe/*
20+
Copyright: Microsoft Corporation
21+
License: Apache-2.0
22+
23+
Files: vendor/pulp_riscv_dbg/*
24+
Copyright: 2020 ETH Zurich and University of Bologna
25+
License: SHL-0.51
26+
27+
Files: vendor/open_hbmc/*
28+
Copyright: © 2020-2022, Vaagn Oganesyan <[email protected]>
29+
License: Apache-2.0
30+
31+
Files: vendor/newae/crypto/tiny-AES128-C/*
32+
Copyright: tiny-AES-c contributors
33+
License: Unlicense
34+
35+
Files: vendor/newae/simpleserial*
36+
vendor/newae/hal/hal.h
37+
vendor/newae/basic-passwdcheck/basic-passwdcheck.c
38+
Copyright: 2012-2017 NewAE Technology Inc
39+
License: GPL-3.0-or-later
40+
41+
Files: vendor/newae/crypto/aes-independant.*
42+
Copyright: 2012 Colin O'Flynn <[email protected]>
43+
License: GPL-3.0-or-later
44+
45+
Files: sw/legacy/demo/lcd_st7735/coremark/ee_printf.c
46+
Copyright: 2018 Embedded Microprocessor Benchmark Consortium (EEMBC)
47+
License: Apache-2.0

book.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright lowRISC contributors.
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
[book]
26
language = "en"
37
multilingual = false

flake.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright lowRISC contributors.
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
14
{
25
description = "Sonata System";
36
inputs = {
@@ -78,6 +81,7 @@
7881
};
7982

8083
lint-all = pkgs.writers.writeBashBin "lint-all" ''
84+
${getExe pkgs.reuse} --suppress-deprecation lint
8185
${getExe lint-markdown}
8286
${getExe lint-python}
8387
'';

rtl/ip/spi/dv/verilator/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

rtl/ip/spi/dv/verilator/spi_core_tb.sv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright lowRISC contributors.
3+
* Licensed under the Apache License, Version 2.0, see LICENSE for details.
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
16
module spi_core_tb;
27
logic clk, rst_n;
38

rtl/ip/spi/dv/verilator/spi_recv.sv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright lowRISC contributors.
3+
* Licensed under the Apache License, Version 2.0, see LICENSE for details.
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
16
module spi_recv #(parameter bit CPHA = 1'b0) (
27
input spi_clk,
38
input spi_copi_i

0 commit comments

Comments
 (0)