Skip to content

Commit 160eea0

Browse files
committed
Fix merge conflicts
2 parents c3b1253 + e01bfe6 commit 160eea0

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ jobs:
1111
runs-on: ubuntu-18.04
1212

1313
steps:
14-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
1514
- uses: actions/checkout@v2
1615

17-
# Runs a single command using the runners shell
1816
- name: Run builder script with arguments `--help`
1917
run: ./build-kernel.sh --help

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
output/

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"exiasr.hadolint"
4+
]
5+
}

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,11 @@ Check the above documentation to make sure that these examples are up-to-date.
5757
### Cross-compile the kernel
5858

5959
The command below builds the branch `rpi-4.19.y` for the Raspberry Pi 4
60-
(`bcm2711_defconfig`). Because this branch is not stable, we include today's
61-
date to the value of `--kernel-localversion` (`4.19.y-20200614-hardened`).
60+
(`bcm2711_defconfig`). Because this branch is in progress, we include today's
61+
date to the value of `--kernel-localversion` (`4.19.y-20200614-hardened`). You
62+
can set the value of `--kernel-localversion` to anything you want.
6263

63-
Once installed, the full kernel name will be
64+
Once installed, the full kernel name will be:
6465

6566
```console
6667
$ uname -a
@@ -106,7 +107,7 @@ Copy the Debian packages `$PWD/output/*.deb` to the target Raspbery Pi, for
106107
example using `scp`, then follow the instructions given at the end of the build
107108
command.
108109

109-
## Notes
110+
## Customize your build
110111

111112
- The builder uses all the CPU cores available to the Docker container. By default,
112113
that is all the CPU cores of the host. Use
@@ -121,7 +122,7 @@ a different toolchain and kernel source code.
121122

122123
```console
123124
$ git clone <toolchain-repo> tools
124-
$ git cllone <kernel-repo> linux
125+
$ git clone <kernel-repo> linux
125126
$ docker run \
126127
--rm \
127128
-v $PWD/output:/output \

0 commit comments

Comments
 (0)