mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
One single commit upstream:
sbi: add debian prebuilt v1.6 & remove vendor 0.9 sbi & update mainline opensbi
* mainline opensbi commit: 140844b3bd4a6f2919ccd2ff5e93c6222a4f71fb
* mainline opensbi-h commit: 83f3e406cf48a0228c0e0738758d48ccfcbb6ae9
Signed-off-by: Kanak Shilledar <kanakshilledar111@protonmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
775 B
Makefile
27 lines
775 B
Makefile
################################################################################
|
|
#
|
|
# sipeed-lpi4abin
|
|
#
|
|
################################################################################
|
|
|
|
SIPEED_LPI4ABIN_VERSION = 725756411ecc20f2c2dbc5ea6b8e5aacc6f83aad
|
|
SIPEED_LPI4ABIN_SITE = https://github.com/revyos/th1520-boot-firmware.git
|
|
SIPEED_LPI4ABIN_SITE_METHOD = git
|
|
SIPEED_LPI4ABIN_LICENSE = PROPRIETARY
|
|
|
|
SIPEED_LPI4ABIN_INSTALL_IMAGES = YES
|
|
SIPEED_LPI4ABIN_INSTALL_TARGET = NO
|
|
|
|
SIPEED_LPI4ABIN_FILES = \
|
|
addons/boot/light_aon_fpga.bin \
|
|
addons/boot/light_c906_audio.bin \
|
|
addons/boot/str.bin
|
|
|
|
define SIPEED_LPI4ABIN_INSTALL_IMAGES_CMDS
|
|
$(foreach f,$(SIPEED_LPI4ABIN_FILES), \
|
|
$(INSTALL) -D -m 0644 -t $(BINARIES_DIR)/bootbins $(@D)/$(f)
|
|
)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|