Skip to content

Commit 52e937d

Browse files
committed
Fix kernel 5.10 config
Firecracker 1.0.0's build tool parses the kernel version out of the specified config file to determine which kernel sources to downlod. The build tool requires the patch version to be specified: https://github.com/firecracker-microvm/firecracker/blob/v1.0.0/tools/devtool#L2015 However, the linux kernel cdn drops the patch version if it is 0 (i.e. sources for kernel 5.10.0 are hosted with a filename like linux-5.10.tar.gz). This means that firecracker-1.0.0 cannot build kernel 5.10.0. Signed-off-by: Kern Walster <[email protected]>
1 parent 33b17cf commit 52e937d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/kernel-configs/microvm-kernel-aarch64-5.10.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Automatically generated file; DO NOT EDIT.
3-
# Linux/arm64 5.10.0 Kernel Configuration
3+
# Linux/arm64 5.10.1 Kernel Configuration
44
#
55
CONFIG_CC_VERSION_TEXT="gcc (GCC) 7.3.1 20180712 (Red Hat 7.3.1-13)"
66
CONFIG_CC_IS_GCC=y

tools/kernel-configs/microvm-kernel-x86_64-5.10.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Automatically generated file; DO NOT EDIT.
3-
# Linux/x86 5.10.0 Kernel Configuration
3+
# Linux/x86 5.10.1 Kernel Configuration
44
#
55
CONFIG_CC_VERSION_TEXT="gcc (GCC) 7.3.1 20180712 (Red Hat 7.3.1-13)"
66
CONFIG_CC_IS_GCC=y

0 commit comments

Comments
 (0)