You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1015 B
28 lines
1015 B
################################################################################
|
|
#
|
|
# beaglev-secondboot
|
|
#
|
|
################################################################################
|
|
|
|
# Commit on the 'starfive' branch
|
|
BEAGLEV_SECONDBOOT_VERSION = 2d20047960044308126117ad56bc08a1164e82b2
|
|
BEAGLEV_SECONDBOOT_SITE = $(call github,starfive-tech,beagle_secondBoot,$(BEAGLEV_SECONDBOOT_VERSION))
|
|
BEAGLEV_SECONDBOOT_INSTALL_TARGET = NO
|
|
BEAGLEV_SECONDBOOT_INSTALL_IMAGES = YES
|
|
BEAGLEV_SECONDBOOT_DEPENDENCIES = host-riscv64-elf-toolchain
|
|
BEAGLEV_SECONDBOOT_LICENSE = GPL-2.0+
|
|
BEAGLEV_SECONDBOOT_LICENSE_FILES = LICENSE
|
|
|
|
define BEAGLEV_SECONDBOOT_BUILD_CMDS
|
|
$(MAKE) -C $(@D)/build \
|
|
CROSSCOMPILE=$(HOST_DIR)/bin/riscv64-unknown-elf- \
|
|
SUFFIX=buildroot \
|
|
GIT_VERSION=$(BEAGLEV_SECONDBOOT_VERSION)
|
|
endef
|
|
|
|
define BEAGLEV_SECONDBOOT_INSTALL_IMAGES_CMDS
|
|
$(INSTALL) -D -m 0644 $(@D)/build/bootloader-BEAGLEV-buildroot.bin.out \
|
|
$(BINARIES_DIR)/bootloader-BEAGLEV-buildroot.bin.out
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
|