-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! fixup! Replace BBL with OpenSBI
- Loading branch information
Showing
3 changed files
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,9 @@ KERNEL_VERSION ?= $(shell make -sC $(LINUX_DIR) kernelversion) | |
KERNEL_TIMESTAMP ?= $(shell date -Ru) | ||
IMAGE_KERNEL_VERSION?= 0.0.0 | ||
HEADERS := artifacts/linux-headers-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).tar.xz | ||
IMAGE := artifacts/linux-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).bin | ||
LINUX := artifacts/linux-opensbi-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).bin | ||
LINUX_ELF := artifacts/linux-opensbi-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).elf | ||
IMAGE := artifacts/linux-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).bin | ||
LINUX_ELF := artifacts/linux-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).elf | ||
SELFTEST := artifacts/linux-selftest-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).ext2 | ||
CROSS_DEB_FILENAME := artifacts/linux-libc-dev-riscv64-cross-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).deb | ||
NATIVE_DEB_FILENAME := artifacts/linux-libc-dev-$(KERNEL_VERSION)-v$(IMAGE_KERNEL_VERSION).deb | ||
|
@@ -105,14 +105,16 @@ run-selftest: | |
# clone (for non CI environment) | ||
# ------------------------------------------------------------------------------ | ||
clone: LINUX_BRANCH ?= linux-5.15.63-ctsi-y | ||
clone: OPENSBI_BRANCH ?= opensbi-1.2-ctsi-y | ||
clone: OPENSBI_BRANCH ?= ports/opensbi-1.3.1 | ||
clone: | ||
git clone --depth 1 --branch $(LINUX_BRANCH) \ | ||
[email protected]:cartesi/linux.git $(LINUX_DIR) || \ | ||
cd $(LINUX_DIR) && git pull | ||
git clone --depth 1 --branch $(OPENSBI_BRANCH) \ | ||
cd $(LINUX_DIR) && git pull || \ | ||
true | ||
git clone --branch $(OPENSBI_BRANCH) \ | ||
[email protected]:cartesi/opensbi.git $(OPENSBI_DIR) || \ | ||
cd $(OPENSBI_DIR) && git pull | ||
cd $(OPENSBI_DIR) && git pull || \ | ||
true | ||
|
||
run: IMG=cartesi/toolchain:devel | ||
run: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
ba052ec5118d21b0bbea3bdcd866a81b3b68029f69464074ca26f0cda4447bb9 dep/linux-5.15.63-ctsi-y.tar.gz | ||
dad6cc6b0efeb3fd34d80199279dbaf7217c2f2179a5fdb639c3829e62f6b44a dep/opensbi-opensbi-1.2-ctsi-y.tar.gz | ||
7d8655bc907ca1a11a574cd5298c8128356f1f880e67bcac3903184fe1842c03 dep/linux-6.5.9.tar.gz | ||
8612991208442ba95a216d7fec30e70f901e1305ab321b6e828c977f83b9a497 dep/opensbi-1.3.1.tar.gz |