b3c46df481
Add the RISC-V Proxy Kernel (pk) package which provides the Berkeley Boot Loader for booting RISC-V kernel images. Signed-off-by: Mark Corbin <mark.corbin@embecosm.com> [Thomas: - fix prompt of option to be just "riscv-pk" - add blank line between help text and upstream URL in Config.in file - use $(INSTALL) instead of cp to install the generated image] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
848 B
Makefile
33 lines
848 B
Makefile
################################################################################
|
|
#
|
|
# riscv-pk
|
|
#
|
|
################################################################################
|
|
|
|
RISCV_PK_VERSION = 706cc77c369fd3e4734b5a6aa813d421347f1814
|
|
RISCV_PK_SITE = git://github.com/riscv/riscv-pk.git
|
|
RISCV_PK_LICENSE = BSD-3-Clause
|
|
RISCV_PK_LICENSE_FILES = LICENSE
|
|
RISCV_PK_DEPENDENCIES = linux
|
|
RISCV_PK_SUBDIR = build
|
|
RISCV_PK_INSTALL_IMAGES = YES
|
|
|
|
define RISCV_PK_CONFIGURE_CMDS
|
|
mkdir -p $(@D)/build
|
|
(cd $(@D)/build; \
|
|
$(TARGET_CONFIGURE_OPTS) ../configure \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--with-payload=$(BINARIES_DIR)/vmlinux \
|
|
)
|
|
endef
|
|
|
|
define RISCV_PK_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/build bbl
|
|
endef
|
|
|
|
define RISCV_PK_INSTALL_IMAGES_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/build/bbl $(BINARIES_DIR)/bbl
|
|
endef
|
|
|
|
$(eval $(generic-package))
|