Update Maintainer Guide

Jeremy Cline 2020-03-10 15:00:45 +00:00
parent 45622b9a2d
commit 50d5f2ec36

@ -78,6 +78,22 @@ Once the kernel patches and configuration have been updated for the new release,
After a release branch has been prepared, it's time to build it. This guide assumes you have Koji and/or Brew installed and properly configured. It also assumes you've authenticated and have permissions to build.
## Fedora
From the release branch, run:
```
# Checks out the Fedora dist-git repository and copies everything from the source tree into it
#
# By default, this creates a directory in /tmp, but the location can be set with RHDISTGIT_TMP.
make rh-dist-git
cd /tmp/RHEL*/kernel
git commit -a -s -F ../changelog
fedpkg push
fedpkg build
```
## ARK
1. Run ``make rh-dist-git``. By default, this will create a directory in /tmp and can be overridden with `make RHDISTGIT_TMP=/path/to/dir rh-dist-git`. The directory name will be printed at the end, it should end with /kernel . It may look like this: /tmp/RHEL8.2018-10-08.HXzpLdpW/kernel. The next time you are building dist-git, you may edit redhat/Makefile.rhpkg and use cache to make the process faster. This is done by setting RHDISTGIT_CACHE:=<path2distgit> where path2distgit is the path to previous make rh-dist-git output.