Update build_configs.sh to generate_all_configs.sh

Also cleanup a handful of references to "master" which should be "main"
or "rawhide".
This commit is contained in:
Brandon Nielsen 2021-02-20 16:30:32 -06:00 committed by pbokoc
parent 0b577ceb43
commit 25ff311b28
2 changed files with 9 additions and 9 deletions

View file

@ -110,11 +110,11 @@ sudo dnf install ccache
== Building a Kernel from the Fedora dist-git
The kernel, like any other Fedora package, has a branch per Fedora release.
`master` corresponds to Rawhide and each version of Fedora has a branch called
`rawhide` corresponds to Rawhide and each version of Fedora has a branch called
`f<version>`. For example, to build a Fedora 28 kernel, you would first need
to check out that branch with:
. Check out the branch for which you would like to build a kernel (`master`
. Check out the branch for which you would like to build a kernel (`rawhide`
corresponds to Rawhide):
+
[source,bash]
@ -243,8 +243,8 @@ to start with the latest Rawhide configuration:
[source,bash]
----
cd <dist-git directory>
git checkout master
./build_configs.sh # Ensure the latest configuration files are generated
git checkout rawhide
./generate_all_configs.sh # Ensure the latest configuration files are generated
cp kernel-<arch>.config <linux kernel directory>.config
----