Skip to content

Commit

Permalink
feat: upgrade Linux kernel to 5.7.14
Browse files Browse the repository at this point in the history
This updates Linux kernel to the latest available version in 5.7.x
series.

Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
smira authored and talos-bot committed Aug 7, 2020
1 parent d27684b commit 79edd7e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions kernel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
When updating kernel to the new version, import proper defaults with:

```sh
make kernel-olddefconfig
make kernel-olddefconfig USERNAME=rsmitty
```

If you want to update for a specific architecture only, use:

```sh
make kernel-olddefconfig PLATFORM=linux/arm64
make kernel-olddefconfig USERNAME=rsmitty PLATFORM=linux/arm64
```

## Customizing the kernel

Run another target to get into `menuconfig`:

```sh
make kernel-menuconfig
make kernel-menuconfig USERNAME=rsmitty
```

## Testing
Expand Down
6 changes: 3 additions & 3 deletions kernel/kernel-prepare/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ dependencies:
- image: '{{ .TOOLS_IMAGE }}'
steps:
- sources:
- url: https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.7.7.tar.xz
- url: https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.7.14.tar.xz
destination: linux.tar.xz
sha256: f840b9679283343c165516585c3070ebb277528721c890e9410a58e9d071ee7f
sha512: 49db85a1ce14e00411215d5d5bfda6db3d24ed2e0f2bd8e6603c18b3226614f45040856b21b4d6b525c44bb4463ab08fb594a06de6deca109d512588389cc3fd
sha256: 189adf783670b2a4d04c11d645d5ad346261212b47ab31ec7e8b6e070a772f47
sha512: 2130ea327ff02aedd63e6de266a5dc7993d1706955d308788e7bfdf524210509a549ebcfdd0b97952ebd531a46f3d412f1053f5accf72f5314b6570dc866b585
env:
ARCH: {{ if eq .ARCH "aarch64"}}arm64{{ else if eq .ARCH "x86_64" }}x86_64{{ else }}unsupported{{ end }}
prepare:
Expand Down
3 changes: 2 additions & 1 deletion kernel/kernel/config-amd64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.7.7 Kernel Configuration
# Linux/x86 5.7.14 Kernel Configuration
#

#
Expand Down Expand Up @@ -642,6 +642,7 @@ CONFIG_EFI_RUNTIME_WRAPPERS=y
# end of EFI (Extensible Firmware Interface) Support

CONFIG_EFI_EARLYCON=y
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y

#
# Tegra firmware driver
Expand Down
3 changes: 2 additions & 1 deletion kernel/kernel/config-arm64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.7.7 Kernel Configuration
# Linux/arm64 5.7.14 Kernel Configuration
#

#
Expand Down Expand Up @@ -566,6 +566,7 @@ CONFIG_EFI_ARMSTUB_DTB_LOADER=y
# end of EFI (Extensible Firmware Interface) Support

CONFIG_EFI_EARLYCON=y
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y

#
# Tegra firmware driver
Expand Down

0 comments on commit 79edd7e

Please sign in to comment.