diff options
author | Mitchell Horne <mhorne@FreeBSD.org> | 2020-12-08 00:35:13 +0000 |
---|---|---|
committer | Mitchell Horne <mhorne@FreeBSD.org> | 2020-12-08 00:35:13 +0000 |
commit | 86635d499298956e08e9ac8edc4bd8cdfa5e4587 (patch) | |
tree | 180b87d0abfda88e13e64d73f01b683a047caaee /release/tools | |
parent | a56ac758539049e4de721ff0ec1d57e85f9a2c8a (diff) | |
download | src-86635d499298956e08e9ac8edc4bd8cdfa5e4587.tar.gz src-86635d499298956e08e9ac8edc4bd8cdfa5e4587.zip |
release.sh: add support for RISC-V embedded builds
Since the few existing RISC-V hardware platforms are single board
computers, we can piggyback off of arm/arm64's embedded build support
for generating SD card images.
I don't see a pressing need to change the naming in this file at this
time.
Reviewed by: gjb, manu
Differential Revision: https://reviews.freebsd.org/D27043
Notes
Notes:
svn path=/head/; revision=368421
Diffstat (limited to 'release/tools')
-rw-r--r-- | release/tools/arm.subr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/release/tools/arm.subr b/release/tools/arm.subr index 1d4d195ca24d..1d4ae17d3851 100644 --- a/release/tools/arm.subr +++ b/release/tools/arm.subr @@ -27,7 +27,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# Common subroutines used to build arm SD card images. +# Common subroutines used to build arm, arm64, or RISC-V SD card images. # # $FreeBSD$ # @@ -265,11 +265,11 @@ arm_install_boot() { } arm_install_uboot() { - # Override in the arm/KERNEL.conf file. + # Override in the ${EMBEDDED_TARGET}/${BOARDNAME}.conf file. return 0 } arm_do_quirk() { - # Override in the arm{,64}/BOARD.conf file. + # Override in the ${EMBEDDED_TARGET}/${BOARDNAME}.conf file. } |