blob: 275bdb0664ed3baffc58b53932562a3051751384 [file] [log] [blame]
David Lattimore42b2bb12022-01-06 08:58:29 +11001#!/bin/bash
2
David Lattimore3b6faa22022-10-18 14:10:43 +11003# Copyright 2021 The ChromiumOS Authors
David Lattimore42b2bb12022-01-06 08:58:29 +11004# 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 Lattimore51124662022-07-28 14:33:01 +100013if [ "${TFLM-}" != "0" ]; then
David Lattimore42b2bb12022-01-06 08:58:29 +110014 FEATURES+=,tflm
15fi
16export FEATURES
David Lattimore51124662022-07-28 14:33:01 +100017export PROFILE=dev
David Lattimore42b2bb12022-01-06 08:58:29 +110018
19exec "${PROJECT_ROOT}/scripts/build-fpga-rom"