Skip to content

Commit 8479ae7

Browse files
committed
Update README.md
1 parent 2da5f79 commit 8479ae7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Miscellaneous:
114114
linux_checkout - Checks out the version specified by $VERSION of the linux kernel in $LINUX_SRC
115115
116116
Environment Variables:
117-
VERSION - The version to download or checkout. For checkout only, if the third number in the version string is a 'y', the latest version of the kernel with that major and minor version is used. Examples: 5.10, 5.10.107, v5.10, 5.10.y, linux-5.10.y
117+
VERSION - The version to download or checkout. If the patch version is a 'y', the latest version of the kernel with that major and minor version is used. Examples: 5.10, 5.10.107, v5.10, 5.10.y, linux-5.10.y, android13-5.10
118118
```
119119

120120
## Building
@@ -186,12 +186,12 @@ VERSION=5.10.107 make linux_download
186186
VERSION=5.10.107 make linux_checkout
187187
```
188188

189-
The version string can be specified as `5.10.107` as `v5.10.107` (the name of the version tag in the Linux git repo). For `linux_checkout`, you can additionally set the last number to `y` to checkout the latest version of that kernel:
189+
The version string can be specified as `5.10.107` or `v5.10.107` (the name of the version tag in the Linux git repo). You can additionally set the last number to `y` to checkout or download the latest version of that kernel:
190190
```bash
191+
VERSION=5.10.y make linux_download
191192
VERSION=5.10.y make linux_checkout
192193
```
193-
Using `linux-5.10.y` will also work here, which is the name of the corresponding branch in the Linux git repo.
194194

195-
The `LINUX_SRC` variable can be used to customize the source directory for `linux_checkout`
195+
The `LINUX_SRC` variable can be used to customize the source directory for `linux_checkout`.
196196

197197
These `make` targets are just wrappers around the `./scripts/download_linux.sh` and `./scripts/checkout_linux.sh` scripts, so if you prefer those can be used instead.

0 commit comments

Comments
 (0)