Skip to content

Commit

Permalink
Add support for vcu118
Browse files Browse the repository at this point in the history
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
  • Loading branch information
nategraff-sifive committed Mar 12, 2020
1 parent 8f7f99d commit 334d19a
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 334d19a

Please sign in to comment.