summaryrefslogtreecommitdiffstats
path: root/documentation/transitioning-to-a-custom-environment.rst
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2020-09-17 01:58:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:36 +0100
commitc387f0c2543a9dd7f8eca069629ede4bb5ec5dba (patch)
treed0a7fccf9b84915862b1174ae75cd0437a60bb2d /documentation/transitioning-to-a-custom-environment.rst
parent6813141743f4263e6b03fd7294f9cec4ec1a3194 (diff)
downloadpoky-c387f0c2543a9dd7f8eca069629ede4bb5ec5dba.tar.gz
sphinx: replace special quotes with single and double quotes
(From yocto-docs rev: 0aeb7a94abcef3cb3850c753dd0a243f381e6675) Signed-off-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/transitioning-to-a-custom-environment.rst')
-rw-r--r--documentation/transitioning-to-a-custom-environment.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/documentation/transitioning-to-a-custom-environment.rst b/documentation/transitioning-to-a-custom-environment.rst
index 6f75aa746e..43a646d87e 100644
--- a/documentation/transitioning-to-a-custom-environment.rst
+++ b/documentation/transitioning-to-a-custom-environment.rst
@@ -10,9 +10,9 @@ Transitioning to a custom environment for systems development
10 10
11 So you've finished the :doc:`brief-yoctoprojectqs/brief-yoctoprojectqs` and 11 So you've finished the :doc:`brief-yoctoprojectqs/brief-yoctoprojectqs` and
12 glanced over the document :doc:`what-i-wish-id-known`, the latter contains 12 glanced over the document :doc:`what-i-wish-id-known`, the latter contains
13 important information learned from other users. Youre well prepared. But 13 important information learned from other users. You're well prepared. But
14 now, as you are starting your own project, isnt exactly straightforward what 14 now, as you are starting your own project, isn't exactly straightforward what
15 to do. And, the documentation is daunting. Weve put together a few hints to 15 to do. And, the documentation is daunting. We've put together a few hints to
16 get you started. 16 get you started.
17 17
18#. **Make a list of the processor, target board, technologies, and capabilities 18#. **Make a list of the processor, target board, technologies, and capabilities
@@ -21,7 +21,7 @@ Transitioning to a custom environment for systems development
21 things, and adding them to your configuration. (See #3) 21 things, and adding them to your configuration. (See #3)
22 22
23#. **Set up your board support**. 23#. **Set up your board support**.
24 Even if youre using custom hardware, it might be easier to start with an 24 Even if you're using custom hardware, it might be easier to start with an
25 existing target board that uses the same processor or at least the same 25 existing target board that uses the same processor or at least the same
26 architecture as your custom hardware. Knowing the board already has a 26 architecture as your custom hardware. Knowing the board already has a
27 functioning Board Support Package (BSP) within the project makes it easier 27 functioning Board Support Package (BSP) within the project makes it easier
@@ -36,7 +36,7 @@ Transitioning to a custom environment for systems development
36 vendor – they can point you to their most qualified efforts. In general, for 36 vendor – they can point you to their most qualified efforts. In general, for
37 Intel silicon use meta-intel, for Texas Instruments use meta-ti, and so 37 Intel silicon use meta-intel, for Texas Instruments use meta-ti, and so
38 forth. Choose a BSP that has been tested with the same Yocto Project release 38 forth. Choose a BSP that has been tested with the same Yocto Project release
39 that youve downloaded. Be aware that some BSPs may not be immediately 39 that you've downloaded. Be aware that some BSPs may not be immediately
40 supported on the very latest release, but they will be eventually. 40 supported on the very latest release, but they will be eventually.
41 41
42 You might want to start with the build specification that Poky provides 42 You might want to start with the build specification that Poky provides
@@ -46,7 +46,7 @@ Transitioning to a custom environment for systems development
46 46
47#. **Based on the layers you've chosen, make needed changes in your 47#. **Based on the layers you've chosen, make needed changes in your
48 configuration**. 48 configuration**.
49 For instance, youve chosen a machine type and added in the corresponding BSP 49 For instance, you've chosen a machine type and added in the corresponding BSP
50 layer. You'll then need to change the value of the MACHINE variable in your 50 layer. You'll then need to change the value of the MACHINE variable in your
51 configuration file (build/local.conf) to point to that same machine 51 configuration file (build/local.conf) to point to that same machine
52 type. There could be other layer-specific settings you need to change as 52 type. There could be other layer-specific settings you need to change as
@@ -82,14 +82,14 @@ Transitioning to a custom environment for systems development
82 Recipe <dev-manual/dev-manual-common-tasks:writing a new recipe>` in the 82 Recipe <dev-manual/dev-manual-common-tasks:writing a new recipe>` in the
83 Yocto Project Development Tasks Manual for more information. 83 Yocto Project Development Tasks Manual for more information.
84 84
85#. **Now youre ready to create an image recipe**. 85#. **Now you're ready to create an image recipe**.
86 There are a number of ways to do this. However, it is strongly recommended 86 There are a number of ways to do this. However, it is strongly recommended
87 that you have your own image recipe - dont try appending to existing image 87 that you have your own image recipe - don't try appending to existing image
88 recipes. Recipes for images are trivial to create and you usually want to 88 recipes. Recipes for images are trivial to create and you usually want to
89 fully customize their contents. 89 fully customize their contents.
90 90
91#. **Build your image and refine it**. 91#. **Build your image and refine it**.
92 Add whats missing and fix anything that's broken using your knowledge of the 92 Add what's missing and fix anything that's broken using your knowledge of the
93 :ref:`workflow <sdk-manual/sdk-extensible:using \`\`devtool\`\` in your sdk 93 :ref:`workflow <sdk-manual/sdk-extensible:using \`\`devtool\`\` in your sdk
94 workflow>` to identify where issues might be occurring. 94 workflow>` to identify where issues might be occurring.
95 95