summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorDaniel Wagenknecht <dwagenknecht@emlix.com>2021-09-23 10:34:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-02 09:57:41 +0100
commitb0eedf4dcaa22d338293b8a8f72b8bc6c2d85fd9 (patch)
treee886c65bf90d75335e8a65eb26e38a67dab3fb95 /documentation/dev-manual
parent65cfd937a2a21cec7db8c75f84edd9251738bb7b (diff)
downloadpoky-b0eedf4dcaa22d338293b8a8f72b8bc6c2d85fd9.tar.gz
common-tasks: add note about license implications of bundled initramfs
Ensure users are aware that usage of INITRAMFS_IMAGE_BUNDLE is only appropriate for use with GPLv2 compatible software. (From yocto-docs rev: 1859654663ebb3b051fb6c4da4dc76f0dd46c47c) Signed-off-by: Daniel Wagenknecht <dwagenknecht@emlix.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/common-tasks.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst
index bd8bbecb3d..b81f51bf83 100644
--- a/documentation/dev-manual/common-tasks.rst
+++ b/documentation/dev-manual/common-tasks.rst
@@ -3888,6 +3888,12 @@ Follow these steps to create an initramfs image:
3888 3888
3889 .. note:: 3889 .. note::
3890 3890
3891 Bundling the initramfs with the kernel conflates the code in the initramfs
3892 with the GPLv2 licensed Linux kernel binary. Thus only GPLv2 compatible
3893 software may be part of a bundled initramfs.
3894
3895 .. note::
3896
3891 If you choose to not bundle the initramfs image with the kernel 3897 If you choose to not bundle the initramfs image with the kernel
3892 image, you are essentially using an 3898 image, you are essentially using an
3893 `Initial RAM Disk (initrd) <https://en.wikipedia.org/wiki/Initrd>`__. 3899 `Initial RAM Disk (initrd) <https://en.wikipedia.org/wiki/Initrd>`__.