Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 1 | .. SPDX-License-Identifier: CC-BY-SA-2.0-UK |
| 2 | |
| 3 | Conserving Disk Space |
| 4 | ********************* |
| 5 | |
| 6 | Conserving Disk Space During Builds |
| 7 | =================================== |
| 8 | |
| 9 | To help conserve disk space during builds, you can add the following |
| 10 | statement to your project's ``local.conf`` configuration file found in |
| 11 | the :term:`Build Directory`:: |
| 12 | |
| 13 | INHERIT += "rm_work" |
| 14 | |
| 15 | Adding this statement deletes the work directory used for |
| 16 | building a recipe once the recipe is built. For more information on |
| 17 | "rm_work", see the :ref:`ref-classes-rm-work` class in the |
| 18 | Yocto Project Reference Manual. |
| 19 | |
| 20 | Purging Duplicate Shared State Cache Files |
| 21 | ========================================== |
| 22 | |
| 23 | After multiple build iterations, the Shared State (sstate) cache can contain |
| 24 | duplicate cache files for a given package, while only the most recent one |
| 25 | is likely to be reusable. The following command purges all but the |
| 26 | newest sstate cache file for each package:: |
| 27 | |
| 28 | sstate-cache-management.sh --remove-duplicated --cache-dir=build/sstate-cache |
| 29 | |
| 30 | This command will ask you to confirm the deletions it identifies. |
| 31 | |
| 32 | .. note:: |
| 33 | |
| 34 | The duplicated sstate cache files of one package must have the same |
| 35 | architecture, which means that sstate cache files with multiple |
| 36 | architectures are not considered as duplicate. |
| 37 | |
| 38 | Run ``sstate-cache-management.sh`` for more details about this script. |
| 39 | |