blob: 5d5fd570aea3db1dda581687ccf6febbf369b265 [file] [log] [blame]
David Lattimore42b2bb12022-01-06 08:58:29 +11001#!/bin/bash
2
3# Copyright 2021 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7# Builds the Rust FPGA ROM. This is intended for development purposes only.
8
9set -e
10
11PROJECT_ROOT=$(git rev-parse --show-toplevel)
12FEATURES=image-transfer,debug-commands
13if [ "$TFLM" != "0" ]; then
14 FEATURES+=,tflm
15fi
16export FEATURES
17
18exec "${PROJECT_ROOT}/scripts/build-fpga-rom"