From dc26df6eb3ae95439e0842d78ba066ae1f662e2a Mon Sep 17 00:00:00 2001 From: Paul Philippov Date: Sun, 3 Jul 2022 18:33:07 -0400 Subject: [PATCH] wording, markdown formatting. --- en/integration-kernel.md | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/en/integration-kernel.md b/en/integration-kernel.md index ba62b22..b681d47 100644 --- a/en/integration-kernel.md +++ b/en/integration-kernel.md @@ -1,4 +1,5 @@ # OpenIPC Wiki + [Table of Content](../index.md) Additional requirements for kernel configuration @@ -16,11 +17,19 @@ CONFIG_IP_PNP_DHCP=y CONFIG_ROOT_NFS=y ``` -## Patch files +## Patch file requirements -Patch files should be named `-.patch`. -- The patch files should not contain any package version reference in their filename. -- The field `` in the patch file name refers to the apply order, and shall start at 1. -It is preferred to pad the number with zeros up to 4 digits, like git-format-patch does. E.g.: _0001-foobar-the-buz.patch_ -- A message explaining what the patch does, and why it is needed, should be added in the header commentary of the patch. -- You should add a Signed-off-by statement in the header of each patch to help with keeping track of the changes and to certify that the patch is released under the same license as the software that is modified. +- Patch file name should follow format `-.patch`. + +- Patch file should not contain any reference to package version in its name. + +- The `` part of patch's file name refers to the application order + starting from 1. It is preferred to left-pad the number with zeros up to total + of four digits, like `git-format-patch` does. _0001-foobar-the-buz.patch_ + +- Patch file should contain a commentary in its header, explaining what this + patch does, and why it is needed. + +- Add a _Signed-off-by_ statement in the header of each patch file to help + tracking changes and certify that the patch is released under the same license + as the software it modifies.