blob: 9158d13f2a04c784959532ebb5b6ea6e06a4a5b8 [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 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"