Skip to content

Commit 3b69acd

Browse files
mpolitzervfusco
authored andcommitted
feat!: Bump kernel to v6.5.13-ctsi-1
1 parent 2287078 commit 3b69acd

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.20.0] - 2024-04-15
9+
### Changed
10+
- Updated Linux Kernel to v6.5.13-ctsi-1
11+
- Updated OpenSBI to v1.3.1-ctsi-2
812

913
## [0.19.1] - 2023-12-05
1014
### Fix
@@ -109,8 +113,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109113
- [0.2.0]
110114
- [0.1.0]
111115

112-
[Unreleased]: https://github.com/cartesi/image-kernel/compare/v0.19.1...HEAD
113-
[0.19.1]: https://github.com/cartesi/image-kernel/compare/v0.19.1
116+
[Unreleased]: https://github.com/cartesi/image-kernel/compare/v0.20.0...HEAD
117+
[0.20.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.20.0
118+
[0.19.1]: https://github.com/cartesi/image-kernel/releases/tag/v0.19.1
114119
[0.19.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.19.0
115120
[0.18.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.18.0
116121
[0.17.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.17.0

Makefile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
.PHONY: all build download push run pull share copy clean checksum
1818

1919
MAJOR := 0
20-
MINOR := 19
21-
PATCH := 1
20+
MINOR := 20
21+
PATCH := 0
2222
LABEL :=
2323
IMAGE_KERNEL_VERSION?= $(MAJOR).$(MINOR).$(PATCH)$(LABEL)
2424

2525
UNAME:=$(shell uname)
2626

2727
TAG ?= devel
2828
TOOLCHAIN_REPOSITORY ?= cartesi/toolchain
29-
TOOLCHAIN_TAG ?= 0.16.0
29+
TOOLCHAIN_TAG ?= 0.17.0
3030

3131
DEP_DIR := dep
3232

33-
KERNEL_VERSION ?= 6.5.9-ctsi-1
33+
KERNEL_VERSION ?= 6.5.13-ctsi-1
3434
KERNEL_SRCPATH := $(DEP_DIR)/linux-${KERNEL_VERSION}.tar.gz
3535

3636
OPENSBI_VERSION ?= 1.3.1-ctsi-2
@@ -129,8 +129,7 @@ clean:
129129
@rm -rf ./artifacts
130130

131131
distclean depclean: clean
132-
@rm -f \
133-
$(KERNEL_SRCPATH) $(OPENSBI_SRCPATH)
132+
@rm -f $(KERNEL_SRCPATH) $(OPENSBI_SRCPATH)
134133

135134
checksum: $(KERNEL_SRCPATH) $(OPENSBI_SRCPATH)
136135
shasum -ca 256 shasumfile

build.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ run-selftest:
104104

105105
# clone (for non CI environment)
106106
# ------------------------------------------------------------------------------
107-
clone: LINUX_BRANCH ?= linux-6.5.9-ctsi-y
107+
clone: LINUX_BRANCH ?= linux-6.5.13-ctsi-y
108108
clone: OPENSBI_BRANCH ?= opensbi-1.3.1-ctsi-y
109109
clone:
110110
git clone --depth 1 --branch $(LINUX_BRANCH) \

shasumfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
bfc4d196b90592a2a6bef83ead9e196da6ab6d5978b48ee5e8ccf02913355bc2 dep/linux-6.5.9-ctsi-1.tar.gz
1+
24f3326aad2aa630c6fb2192305b70963ca67c03b0218cdcd09033cbefc9e52d dep/linux-6.5.13-ctsi-1.tar.gz
22
35082380131117aa8424d1b81ca9e6e0280baa9bffbcf3f46080a652e4cb4385 dep/opensbi-1.3.1-ctsi-2.tar.gz

0 commit comments

Comments
 (0)