summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/building.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/dev-manual/building.rst')
-rw-r--r--documentation/dev-manual/building.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/dev-manual/building.rst b/documentation/dev-manual/building.rst
index 32c7aa5da0..04c1500943 100644
--- a/documentation/dev-manual/building.rst
+++ b/documentation/dev-manual/building.rst
@@ -243,9 +243,9 @@ Bundling an Initramfs Image From a Separate Multiconfig
243 243
244There may be a case where we want to build an :term:`Initramfs` image which does not 244There may be a case where we want to build an :term:`Initramfs` image which does not
245inherit the same distro policy as our main image, for example, we may want 245inherit the same distro policy as our main image, for example, we may want
246our main image to use ``TCLIBC="glibc"``, but to use ``TCLIBC="musl"`` in our :term:`Initramfs` 246our main image to use ``TCLIBC = "glibc"``, but to use ``TCLIBC = "musl"`` in our :term:`Initramfs`
247image to keep a smaller footprint. However, by performing the steps mentioned 247image to keep a smaller footprint. However, by performing the steps mentioned
248above the :term:`Initramfs` image will inherit ``TCLIBC="glibc"`` without allowing us 248above the :term:`Initramfs` image will inherit ``TCLIBC = "glibc"`` without allowing us
249to override it. 249to override it.
250 250
251To achieve this, you need to perform some additional steps: 251To achieve this, you need to perform some additional steps:
@@ -255,8 +255,8 @@ To achieve this, you need to perform some additional steps:
255 For the sake of simplicity let's assume such multiconfig is called: ``initramfscfg.conf`` and 255 For the sake of simplicity let's assume such multiconfig is called: ``initramfscfg.conf`` and
256 contains the variables:: 256 contains the variables::
257 257
258 TMPDIR="${TOPDIR}/tmp-initramfscfg" 258 TMPDIR = "${TOPDIR}/tmp-initramfscfg"
259 TCLIBC="musl" 259 TCLIBC = "musl"
260 260
261#. *Set additional Initramfs variables on your main configuration:* 261#. *Set additional Initramfs variables on your main configuration:*
262 Additionally, on your main configuration (``local.conf``) you need to set the 262 Additionally, on your main configuration (``local.conf``) you need to set the