mirror of
https://git.freebsd.org/ports.git
synced 2025-05-24 23:16:33 -04:00
Some interactive shells (csh, zsh) will try to interpret the '!' at the beginning of the partition type as a previous command. Unconditionally escape this in the example commands, as it can be a source of confusion. PR: 276765 Reported by: rdunkle@smallcatbrain.com Sponsored by: The FreeBSD Foundation
18 lines
544 B
Makefile
18 lines
544 B
Makefile
MASTERDIR= ${.CURDIR}/../u-boot-master
|
|
|
|
U_BOOT_SLAVE_PORTREVISION_2024.01= 1
|
|
|
|
MODEL= starfive-visionfive2
|
|
BOARD_CONFIG= starfive_visionfive2_defconfig
|
|
FAMILY= starfive
|
|
UBOOT_ARCH= riscv64
|
|
|
|
# The FIT image will embed an OpenSBI firmware binary
|
|
OPENSBI_FIRM= ${LOCALBASE}/share/opensbi/lp64/generic/firmware/fw_dynamic.bin
|
|
BUILD_DEPENDS+= ${OPENSBI_FIRM}:sysutils/opensbi
|
|
MAKE_ENV+= OPENSBI=${OPENSBI_FIRM}
|
|
|
|
UBOOT_MOVE= ${WRKSRC}/spl/u-boot-spl.bin.normal.out
|
|
UBOOT_PLIST= u-boot.itb u-boot-spl.bin.normal.out
|
|
|
|
.include "${MASTERDIR}/Makefile"
|