diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2021-07-09 08:03:31 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-10 23:39:18 +0100 |
commit | aa26842ec3d25094636979a3283f2236c582b747 (patch) | |
tree | ad60cda2ad5dd86fb9de00874fab93b9beae64a3 /documentation/ref-manual | |
parent | 6b25d75ca8022e03cfefcc1596b39b555bf9a988 (diff) | |
download | poky-aa26842ec3d25094636979a3283f2236c582b747.tar.gz |
docs: remove image-mklibs references
The image-mklibs bbclass was removed from OE-Core with
commit 908df863b419d1cad7317153101fc827e7e3a354 and
corresponding changes to local.conf.sample were made
in meta-yocto with c8c8f284eb2abe7e1352850a885454487cc01986.
Remove all references to image-mklibs from the documentation
as it is no longer supported.
(From yocto-docs rev: f45b378eb2cb08c173620cffb17cbcc8b402da0d)
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r-- | documentation/ref-manual/classes.rst | 16 | ||||
-rw-r--r-- | documentation/ref-manual/variables.rst | 4 |
2 files changed, 3 insertions, 17 deletions
diff --git a/documentation/ref-manual/classes.rst b/documentation/ref-manual/classes.rst index 09878c480f..9b93807b6d 100644 --- a/documentation/ref-manual/classes.rst +++ b/documentation/ref-manual/classes.rst | |||
@@ -932,20 +932,6 @@ specified by :term:`EFI_PROVIDER` if | |||
932 | Normally, you do not use this class directly. Instead, you add "live" to | 932 | Normally, you do not use this class directly. Instead, you add "live" to |
933 | :term:`IMAGE_FSTYPES`. | 933 | :term:`IMAGE_FSTYPES`. |
934 | 934 | ||
935 | .. _ref-classes-image-mklibs: | ||
936 | |||
937 | ``image-mklibs.bbclass`` | ||
938 | ======================== | ||
939 | |||
940 | The ``image-mklibs`` class enables the use of the ``mklibs`` utility | ||
941 | during the :ref:`ref-tasks-rootfs` task, which optimizes | ||
942 | the size of libraries contained in the image. | ||
943 | |||
944 | By default, the class is enabled in the ``local.conf.template`` using | ||
945 | the :term:`USER_CLASSES` variable as follows:: | ||
946 | |||
947 | USER_CLASSES ?= "buildstats image-mklibs image-prelink" | ||
948 | |||
949 | .. _ref-classes-image-prelink: | 935 | .. _ref-classes-image-prelink: |
950 | 936 | ||
951 | ``image-prelink.bbclass`` | 937 | ``image-prelink.bbclass`` |
@@ -959,7 +945,7 @@ time. | |||
959 | By default, the class is enabled in the ``local.conf.template`` using | 945 | By default, the class is enabled in the ``local.conf.template`` using |
960 | the :term:`USER_CLASSES` variable as follows:: | 946 | the :term:`USER_CLASSES` variable as follows:: |
961 | 947 | ||
962 | USER_CLASSES ?= "buildstats image-mklibs image-prelink" | 948 | USER_CLASSES ?= "buildstats image-prelink" |
963 | 949 | ||
964 | .. _ref-classes-insane: | 950 | .. _ref-classes-insane: |
965 | 951 | ||
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 71c2e11d9b..00d45a79f0 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -8502,11 +8502,11 @@ system and gives an overview of their function and contents. | |||
8502 | :term:`USER_CLASSES` | 8502 | :term:`USER_CLASSES` |
8503 | A list of classes to globally inherit. These classes are used by the | 8503 | A list of classes to globally inherit. These classes are used by the |
8504 | OpenEmbedded build system to enable extra features (e.g. | 8504 | OpenEmbedded build system to enable extra features (e.g. |
8505 | ``buildstats``, ``image-mklibs``, and so forth). | 8505 | ``buildstats``, ``image-prelink``, and so forth). |
8506 | 8506 | ||
8507 | The default list is set in your ``local.conf`` file:: | 8507 | The default list is set in your ``local.conf`` file:: |
8508 | 8508 | ||
8509 | USER_CLASSES ?= "buildstats image-mklibs image-prelink" | 8509 | USER_CLASSES ?= "buildstats image-prelink" |
8510 | 8510 | ||
8511 | For more information, see | 8511 | For more information, see |
8512 | ``meta-poky/conf/local.conf.sample`` in the :term:`Source Directory`. | 8512 | ``meta-poky/conf/local.conf.sample`` in the :term:`Source Directory`. |