Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Adding BlackParrot specific submodules #66

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "bsg_f1"]
path = bsg_replicant
url = [email protected]:bespoke-silicon-group/bsg_f1.git
url = [email protected]:bespoke-silicon-group/bsg_replicant.git
[submodule "bsg_manycore"]
path = bsg_manycore
url = [email protected]:bespoke-silicon-group/bsg_manycore.git
Expand All @@ -13,3 +13,9 @@
[submodule "verilator"]
path = verilator
url = https://github.com/verilator/verilator.git
[submodule "black-parrot"]
path = black-parrot
url = [email protected]:black-parrot/black-parrot.git
[submodule "black-parrot-sdk"]
path = black-parrot-sdk
url = [email protected]:black-parrot-sdk/black-parrot-sdk.git
2 changes: 1 addition & 1 deletion basejump_stl
Submodule basejump_stl updated 132 files
1 change: 1 addition & 0 deletions black-parrot
Submodule black-parrot added at dc23cc
1 change: 1 addition & 0 deletions black-parrot-sdk
Submodule black-parrot-sdk added at 790053
2 changes: 1 addition & 1 deletion bsg_manycore
Submodule bsg_manycore updated 231 files
2 changes: 1 addition & 1 deletion bsg_replicant
Submodule bsg_replicant updated 351 files
18 changes: 11 additions & 7 deletions project.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,21 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

DEPENDENCIES := bsg_manycore bsg_replicant basejump_stl
DEPENDENCIES := bsg_manycore bsg_replicant basejump_stl black-parrot black-parrot-sdk

BLADERUNNER_ROOT := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
BUILD_PATH := $(BLADERUNNER_ROOT)

BSG_F1_DIR := $(BLADERUNNER_ROOT)/bsg_replicant
BSG_F1_COMMIT_ID := $(shell cd $(BSG_F1_DIR); git rev-parse --short HEAD)
BSG_MANYCORE_DIR := $(BLADERUNNER_ROOT)/bsg_manycore
BSG_MANYCORE_COMMIT_ID := $(shell cd $(BSG_MANYCORE_DIR); git rev-parse --short HEAD)
BASEJUMP_STL_DIR := $(BLADERUNNER_ROOT)/basejump_stl
BASEJUMP_STL_COMMIT_ID := $(shell cd $(BASEJUMP_STL_DIR); git rev-parse --short HEAD)
BSG_F1_DIR := $(BLADERUNNER_ROOT)/bsg_replicant
BSG_F1_COMMIT_ID := $(shell cd $(BSG_F1_DIR); git rev-parse --short HEAD)
BSG_MANYCORE_DIR := $(BLADERUNNER_ROOT)/bsg_manycore
BSG_MANYCORE_COMMIT_ID := $(shell cd $(BSG_MANYCORE_DIR); git rev-parse --short HEAD)
BASEJUMP_STL_DIR := $(BLADERUNNER_ROOT)/basejump_stl
BASEJUMP_STL_COMMIT_ID := $(shell cd $(BASEJUMP_STL_DIR); git rev-parse --short HEAD)
BLACKPARROT_DIR := $(BLADERUNNER_ROOT)/black-parrot
BLACKPARROT_COMMIT_ID := $(shell cd $(BLACKPARROT_DIR); git rev-parse --short HEAD)
BLACKPARROT_SDK_DIR := $(BLADERUNNER_ROOT)/black-parrot-sdk
BLACKPARROT_SDK_COMMIT_ID := $(shell cd $(BLACKPARROT_SDK_DIR); git rev-parse --short HEAD)

FPGA_IMAGE_VERSION := 4.3.1
F12XLARGE_TEMPLATE_ID := lt-01bc73811e48f0b26
Expand Down