Update home

Jeremy Cline 2019-11-26 20:09:39 +00:00
parent 8a26fda13f
commit b1a8358780

30
home.md

@ -27,26 +27,26 @@ Rebasing the kernel involves the following steps:
### Configuration ### Configuration
1. git checkout internal 1. ``git checkout internal``
2. git merge <upstream-tag> 2. ``git merge <upstream-tag>``
3. make rh-configs-commit 3. ``make rh-configs-commit``
4. git push 4. ``git push``
5. ./redhat/gen_config_patches.sh 5. ``./redhat/gen_config_patches.sh``
6. Open a merge request for each configs/<date>/ branch. 6. Open a merge request for each ``configs/<date>/`` branch.
### Release branch ### Release branch
Once the kernel patches and configuration have been updated for the new release, it's time to create the release branch: Once the kernel patches and configuration have been updated for the new release, it's time to create the release branch:
1. git checkout -b ark/<upstream-tag> ark/patches/<upstream-tag> 1. ``git checkout -b ark/<upstream-tag> ark/patches/<upstream-tag>``
2. git merge internal 2. ``git merge internal``
3. touch localversion 3. ``touch localversion``
4. make rh-release 4. ``make rh-release``
5. make rh-release-tag 5. ``make rh-release-tag``
6. git push origin ark/<upstream-tag> ark/patches/<upstream-tag> 6. ``git push origin ark/<upstream-tag> ark/patches/<upstream-tag>``
7. git checkout master 7. ``git checkout master``
8. git reset --hard ark/<upstream-tag> 8. ``git reset --hard ark/<upstream-tag>``
9. git push -f origin master ark/patches 9. ``git push -f origin master ark/patches``
# Repository Layout # Repository Layout