Skip to content

Commit

Permalink
Merge pull request #2 from sifive/vcu118
Browse files Browse the repository at this point in the history
Add support for VCU118 FPGAs
  • Loading branch information
erikdanie authored Apr 2, 2020
2 parents be22659 + f7198e1 commit 9e82c34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import pydevicetree

SUPPORTED_TYPES = ["rtl", "arty", "qemu", "hifive", "spike", "vc707"]
SUPPORTED_TYPES = ["rtl", "arty", "qemu", "hifive", "spike", "vc707", "vcu118"]


def parse_arguments(argv):
Expand Down Expand Up @@ -123,7 +123,7 @@ def arch2abi(arch):

def type2tag(target_type):
"""Given the target type, return the list of TARGET_TAGS to parameterize Freedom E SDK"""
if "arty" in target_type or "vc707" in target_type:
if "arty" in target_type or "vc707" in target_type or "vcu118" in target_type:
tags = "fpga openocd"
elif "hifive1-revb" in target_type:
tags = "board jlink"
Expand Down

0 comments on commit 9e82c34

Please sign in to comment.