diff options
| author | Zoltan HERPAI | 2023-06-07 09:54:34 +0000 |
|---|---|---|
| committer | Zoltan HERPAI | 2024-02-29 15:50:19 +0000 |
| commit | f8436018fd1a928ecaaa55a240fa94add095a0ee (patch) | |
| tree | 89f30efe734ed0e1dfc1bfaa9bcf5a669715ecf9 | |
| parent | 0ad062a21ba3962a4532a9a209a16d0755688076 (diff) | |
| download | openwrt-f8436018fd1a928ecaaa55a240fa94add095a0ee.tar.gz | |
opensbi: allow building on upcoming d1 target
U-boot on D1 also uses OpenSBI as its payload. As the current version of
OpenSBI already supports D1 with no further patches required, allow
building it on the upcoming TARGET_d1 too.
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
| -rw-r--r-- | package/boot/opensbi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/opensbi/Makefile b/package/boot/opensbi/Makefile index 01348e50aa..6bb33ad2aa 100644 --- a/package/boot/opensbi/Makefile +++ b/package/boot/opensbi/Makefile @@ -29,7 +29,7 @@ include $(INCLUDE_DIR)/package.mk define Package/opensbi SECTION:=boot CATEGORY:=Boot Loaders - DEPENDS:=@TARGET_sifiveu + DEPENDS:=@(TARGET_sifiveu||TARGET_d1) URL:=https://github.com/riscv/opensbi/blob/master/README.md VARIANT:=$(subst _,/,$(subst opensbi_,,$(1))) TITLE:=OpenSBI generic |