Skip to content

Commit

Permalink
Merge pull request #46 from arturum1/main
Browse files Browse the repository at this point in the history
Add SPDX license headers; Remove unneeded `original_name` and `name` attributes;
  • Loading branch information
jjts authored Oct 7, 2024
2 parents acc7405 + 6066371 commit 999443d
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 IObundle
#
# SPDX-License-Identifier: MIT

name: CI

# Set default shell as interactive (source ~/.bashrc)
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 IObundle
#
# SPDX-License-Identifier: MIT

# Ignore generated files
/*

Expand All @@ -16,3 +20,4 @@
/software/OS_build/*
!/submodules
/submodules/*/*
!/LICENSES
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 IObundle
#
# SPDX-License-Identifier: MIT

[submodule "submodules/VexRiscv"]
path = submodules/VexRiscv
url = [email protected]:SpinalHDL/VexRiscv.git
9 changes: 9 additions & 0 deletions LICENSES/MIT.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 IObundle
#
# SPDX-License-Identifier: MIT

#PATHS
VEXRISCV_DIR ?= $(shell pwd)
VEX_HARDWARE_DIR:=$(VEXRISCV_DIR)/hardware
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 IObundle
SPDX-License-Identifier: MIT
-->

# iob-vexriscv
This repository contains the hardware necessary to integrate the VexRiscv CPU on IOb-SoC.

Expand Down
4 changes: 4 additions & 0 deletions hardware/src/VexRiscvAxi4LinuxPlicClint.v
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2024 IObundle
//
// SPDX-License-Identifier: MIT

// Generator : SpinalHDL v1.9.3 git head : 029104c77a54c53f1edda327a3bea333f7d65fd9
// Component : VexRiscvAxi4LinuxPlicClint

Expand Down
4 changes: 4 additions & 0 deletions hardware/vexriscv_core/VexRiscvAxi4LinuxPlicClint.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2024 IObundle
//
// SPDX-License-Identifier: MIT

package vexriscv.demo

import spinal.core._
Expand Down
7 changes: 5 additions & 2 deletions iob_vexriscv.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# SPDX-FileCopyrightText: 2024 IObundle
#
# SPDX-License-Identifier: MIT


def setup(py_params_dict):
attributes_dict = {
"original_name": "iob_vexriscv",
"name": "iob_vexriscv",
"version": "0.1",
"confs": [
{
Expand Down
4 changes: 4 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 IObundle
#
# SPDX-License-Identifier: MIT

{ pkgs ? import <nixpkgs> {}, jdk ? "jdk11" }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
Expand Down

0 comments on commit 999443d

Please sign in to comment.