summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/migration-2.2.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/migration-2.2.rst')
-rw-r--r--documentation/ref-manual/migration-2.2.rst12
1 files changed, 4 insertions, 8 deletions
diff --git a/documentation/ref-manual/migration-2.2.rst b/documentation/ref-manual/migration-2.2.rst
index d11735163e..a9d3cde7b7 100644
--- a/documentation/ref-manual/migration-2.2.rst
+++ b/documentation/ref-manual/migration-2.2.rst
@@ -144,8 +144,7 @@ The new ``runqemu`` is a Python script. Machine knowledge is no longer
144hardcoded into ``runqemu``. You can choose to use the ``qemuboot`` 144hardcoded into ``runqemu``. You can choose to use the ``qemuboot``
145configuration file to define the BSP's own arguments and to make it 145configuration file to define the BSP's own arguments and to make it
146bootable with ``runqemu``. If you use a configuration file, use the 146bootable with ``runqemu``. If you use a configuration file, use the
147following form: 147following form::
148::
149 148
150 image-name-machine.qemuboot.conf 149 image-name-machine.qemuboot.conf
151 150
@@ -160,8 +159,7 @@ rootfs). QEMU boot arguments can be set in BSP's configuration file and
160the ``qemuboot`` class will save them to ``qemuboot.conf``. 159the ``qemuboot`` class will save them to ``qemuboot.conf``.
161 160
162If you want to use ``runqemu`` without a configuration file, use the 161If you want to use ``runqemu`` without a configuration file, use the
163following command form: 162following command form::
164::
165 163
166 $ runqemu machine rootfs kernel [options] 164 $ runqemu machine rootfs kernel [options]
167 165
@@ -244,8 +242,7 @@ recipes. You need to fix these recipes so that they use the expected
244``LDFLAGS``. Depending on how the software is built, the build system 242``LDFLAGS``. Depending on how the software is built, the build system
245used by the software (e.g. a Makefile) might need to be patched. 243used by the software (e.g. a Makefile) might need to be patched.
246However, sometimes making this fix is as simple as adding the following 244However, sometimes making this fix is as simple as adding the following
247to the recipe: 245to the recipe::
248::
249 246
250 TARGET_CC_ARCH += "${LDFLAGS}" 247 TARGET_CC_ARCH += "${LDFLAGS}"
251 248
@@ -258,8 +255,7 @@ The ``KERNEL_IMAGE_BASE_NAME`` variable no longer uses the
258:term:`KERNEL_IMAGETYPE` variable to create the 255:term:`KERNEL_IMAGETYPE` variable to create the
259image's base name. Because the OpenEmbedded build system can now build 256image's base name. Because the OpenEmbedded build system can now build
260multiple kernel image types, this part of the kernel image base name as 257multiple kernel image types, this part of the kernel image base name as
261been removed leaving only the following: 258been removed leaving only the following::
262::
263 259
264 KERNEL_IMAGE_BASE_NAME ?= "${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}" 260 KERNEL_IMAGE_BASE_NAME ?= "${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}"
265 261