blob: 0ab32776dcec7edffa662e302ddf6c0d4b93070d [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)
David Lattimore8027c8c2022-02-14 14:47:34 +110012FEATURES=image-transfer,dev
David Lattimore42b2bb12022-01-06 08:58:29 +110013if [ "$TFLM" != "0" ]; then
14 FEATURES+=,tflm
15fi
16export FEATURES
17
18exec "${PROJECT_ROOT}/scripts/build-fpga-rom"