Skip to content

Commit

Permalink
Use Kernel 5.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olljanat committed Dec 16, 2020
1 parent 967555e commit 50d3ae1
Show file tree
Hide file tree
Showing 9 changed files with 333 additions and 227 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:

- name: Install github-release
run: |
wget -O - -o /dev/null https://github.com/github-release/github-release/releases/download/v0.8.1/linux-amd64-github-release.bz2 | bunzip2 | sudo tee /usr/local/bin/github-release
sudo wget https://github.com/github-release/github-release/releases/download/v0.9.0/linux-amd64-github-release.bz2 -O /usr/local/bin/github-release.bz2
sudo bunzip2 /usr/local/bin/github-release.bz2
sudo chmod 0755 /usr/local/bin/github-release
- name: Build kernel
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Kernel version 5.9.x
This branch is used to provide 5.9.x version kernels.
# Kernel version 5.10.x
This branch is used to provide 5.10.x version kernels.

On this branch we DO provide new features when ever users request them.
If you are looking for more stable version then check [v4.14.x branch](https://github.com/burmilla/os-kernel/tree/v4.14.x).

## How to contribute
- Fork this repository and create new branch based on 5.9.x branch.
- Fork this repository and create new branch based on 5.10.x branch.
- Check what is latest [firmware tag](https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/refs/) and update FIRMWARE_TAG value Dockerfile.dapper
- Check from [kernel.org](https://www.kernel.org/) that what is latest 5.9.x kernel version.
- Check from [kernel.org](https://www.kernel.org/) that what is latest 5.10.x kernel version.
- Run kernel configuration with commands (update version to KERNEL_TAG):
```bash
KERNEL_TAG=5.9.? MENUCONFIG=true OVERRIDE_KERNEL_ARCH=x86 make kernel-config
KERNEL_TAG=5.10.? MENUCONFIG=true OVERRIDE_KERNEL_ARCH=x86 make kernel-config
```
- Save changes over .config
- Copy new config version over to one which is stored to GIT:
Expand All @@ -19,7 +19,7 @@ cp dist/kernel/config config/x86/kernel-config
```
- Test build kernel with command:
```bash
KERNEL_TAG=5.9.? OVERRIDE_KERNEL_ARCH=x86 make release
KERNEL_TAG=5.10.? OVERRIDE_KERNEL_ARCH=x86 make release
```
- Update firmware/... files if build fails to `ERROR: Firmware ? in ? is not the latest - update to`
- Update modules/x86/modules.list / modules-extra.list if build fails to new modules was found error
Expand Down
Loading

0 comments on commit 50d3ae1

Please sign in to comment.