Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 29c37f4

Browse files
authored
Merge pull request torvalds#126 from ajeddeloh/update-readme
readme: update to include how to use this repo
2 parents 67b4f63 + 58a7e55 commit 29c37f4

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1-
This repository contains the CoreOS branch of Linux. A new branch is created for each kernel version the distribution is rebased onto. The currently shipped version is available in the [overlay repository]( https://github.com/coreos/coreos-overlay/tree/master/sys-kernel/coreos-sources/files).
1+
This repository contains the CoreOS branches of Linux. A new branch is created for each kernel version the distribution is rebased onto. The currently shipped version is available in the [overlay repository](https://github.com/coreos/coreos-overlay/tree/master/sys-kernel/coreos-sources/files).
2+
3+
This repository is not used by the build process at all; it merely exists for generating patchsets that live in coreos-overlay. To add a patch, check out the branch you want to add a patch to (probably v${VERSION}-coreos), apply the patch, then run `git format-patch ${TAG}` where tag is the upstream kernel tag (no "-coreos"). This generates a set of patches that can be used by `./revbump.sh` script in the `coreos-sources` directory in the overlay.
4+
5+
```sh
6+
git checkout v4.13.16-coreos
7+
8+
<Apply and commit your patch>
9+
10+
git format-patch v4.13.16
11+
# check that the patches were generated correctly
12+
ls *.patch
13+
```

0 commit comments

Comments
 (0)