Make layer-guidelines a real markdown document
Add headers/anchors. This facilitates easy copy & paste of links to
specific sections of the document. Remove periods from new headers
because markdownlint doesn't allow that. Reword the EXTRA_OEMAKE
guideline so it fits on a single line.
Add bolding and linebreaks around **why?** and **What should I do
instead?**. The intent seems to have been to have these render on their
own line (bold and not H3 because markdownlint does not allow multiple
headings with the same content).
Add linebreaks in other places where the intent was for a new paragraph
to be rendered(I think?).
Change {autorev} to make it look more like it actually appears in the
code.
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Change-Id: Ib49d9e1079ff3a8b27c788ae34e1868a01cffc8f
diff --git a/meta-layer-guidelines.md b/meta-layer-guidelines.md
index 5f02e93..aa4de9f 100644
--- a/meta-layer-guidelines.md
+++ b/meta-layer-guidelines.md
@@ -1,4 +1,4 @@
-OpenBMC meta layer guidelines
+# OpenBMC meta layer guidelines
While most of these could be called "rules", in specific scenarios might be
actively against the intended goals. This is why each guideline has a very
@@ -7,20 +7,23 @@
project. In general, if there's a question, and the community agrees, these
guidelines can be overridden on a case by case basis.
-1. Meta layers should not patch projects that exist within the openBMC tree.
+## Meta layers should not patch projects that exist within the openBMC tree
-Why?
+**Why?**
+
In general, keeping the codebase building in the long term is difficult.
Opening the possibility that patches exist that repo maintainers aren't aware
of makes it much more likely that a single machine breaks, or we have behavior
differences between two repos.
+
Also, in general, the maintainer is there to ensure that the greater community,
features, and codebase are prioritized over any one patch, and generally does so
in code review. If patches are checked into meta layers, generally the
maintainer is not a reviewer, thereby defeating most of the purpose of the role
of the maintainer.
-What should I do instead?
+**What should I do instead?**
+
Discuss with the project maintainers and the community about whether or not the
feature you're building needs to be configurable, or if it can be applied to all
projects. If it can be applied to all, simply check it into the master branch
@@ -29,52 +32,59 @@
compile time option, at the suggestion of the maintainer, and add a
PACKAGECONFIG entry that can be set to enable it.
-2. Meta layers should not patch Yocto recipes and projects.
+## Meta layers should not patch Yocto recipes and projects
-Why?
+**Why?**
+
Yocto itself is an open source project that accepts contributions. The more
changes that OpenBMC stacks against Yocto recipes, the more unmaintainable it
becomes, and the longer it takes to rebase to new Yocto versions. In general,
the Yocto community is as responsive (sometimes much faster) than the OpenBMC
community in regards to pull requests.
-What should I do instead?
+**What should I do instead?**
+
Submit any changes needed to the Yocto upstream repositories, using their
process. If the Yocto process has gone several weeks without responses,
cherry-pick the commit into the OpenBMC tree, with a pointer to the review in
the commit message.
-3. Meta layers should avoid EXTRA_OEMAKE, EXTRA_OEMESON, arguments in meta
- layers and bbappends
+## Meta layers should avoid using EXTRA_OEMAKE and EXTRA_OEMESON
-Why?
+**Why?**
+
There are some OpenBMC projects that are utilized outside of OpenBMC. As such,
there are configuration items that are not intended to be used in OpenBMC, or
configuration items that would pose a security risk. Also, as options change
and are deprecated, the project needs a single place to update the available
config items and dependencies.
+
In addition, subprojects might change their build tooling, for example from
autotools to meson, in pursuit of other goals. Having tool-specific
configurations makes that change far more difficult to do.
-What should I do instead?
+**What should I do instead?**
+
In the root recipe, add a PACKAGECONFIG entry for the feature in question, then
use that to enable said feature in your meta layer.
-4. Meta layers should not have recipes that point to proprietary licensed code.
+## Meta layers should not have recipes that point to proprietary licensed code
-Why?
+**Why?**
+
OpenBMC is an open source project, and is intended to be built from source, with
appropriate distribution licenses such that it can be reused. Pointing to
commercially licensed repositories actively opposes that goal.
-What should I do instead?
+**What should I do instead?**
+
Find an equivalent open source project that meets the needs, or request that the
project owner relicenses their project.
-5. Meta layers recipes should only point to well maintained open source projects
+## Meta layer recipes should only point to well maintained open source projects
-Why?
+**Why?**
+
Without this guideline, a loophole is present that allows OpenBMC developers to
bypass code review by pointing the upstream recipe to a public repository that
they control, but which OpenBMC has no input on the content of. This splits the
@@ -82,7 +92,8 @@
processes within OpenBMC like bug tracking and continuous integration from
having an effect.
-What should I do instead?
+**What should I do instead?**
+
The advice tends to be on a case by case basis, but if the code is only intended
for use on OpenBMC, then push a design doc, and push the code to openbmc gerrit
under the openbmc/openbmc repository where it can be reviewed, along with an
@@ -92,17 +103,20 @@
community through the mailing list or discord whether or not the OpenBMC
community would be willing to adopt support and maintenance of said project.
-6. Don't use SRCREV={autorev} in a recipe.
+## Don't use SRCREV="${AUTOREV}" in a recipe
-Why?
+**Why?**
+
Repository branches can change at any time. Pointing to an autorev revision
increases the likelihood that builds break, and makes builds far less
reproducible.
+
In addition, having an accounting of exactly what is in your build prevents
errors when a repo is quietly updated while working, and suddenly changes
significantly.
-What should I do instead?
+**What should I do instead?**
+
Point SRCREV to a specific commit of the repository, and increase the revision
either via the autobump script in CI, which can be requested on the mailing
list, or manually as new revisions exist.