diff options
Diffstat (limited to 'documentation/poky-ref-manual/extendpoky.xml')
-rw-r--r-- | documentation/poky-ref-manual/extendpoky.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml index 6a5e1a5d8a..69ff4e2a52 100644 --- a/documentation/poky-ref-manual/extendpoky.xml +++ b/documentation/poky-ref-manual/extendpoky.xml | |||
@@ -269,7 +269,7 @@ fi | |||
269 | The following example shows the form for the two lines you need: | 269 | The following example shows the form for the two lines you need: |
270 | </para> | 270 | </para> |
271 | <programlisting> | 271 | <programlisting> |
272 | IMAGE_INSTALL = "task-poky-x11-base package1 package2" | 272 | IMAGE_INSTALL = "task-core-x11-base package1 package2" |
273 | 273 | ||
274 | inherit poky-image | 274 | inherit poky-image |
275 | </programlisting> | 275 | </programlisting> |
@@ -283,11 +283,11 @@ inherit poky-image | |||
283 | </para> | 283 | </para> |
284 | <para> | 284 | <para> |
285 | The other method for creating a custom image is to modify an existing image. | 285 | The other method for creating a custom image is to modify an existing image. |
286 | For example, if a developer wants to add "strace" into "poky-image-sato", they can use | 286 | For example, if a developer wants to add "strace" into "core-image-sato", they can use |
287 | the following recipe: | 287 | the following recipe: |
288 | </para> | 288 | </para> |
289 | <programlisting> | 289 | <programlisting> |
290 | require poky-image-sato.bb | 290 | require core-image-sato.bb |
291 | 291 | ||
292 | IMAGE_INSTALL += "strace" | 292 | IMAGE_INSTALL += "strace" |
293 | </programlisting> | 293 | </programlisting> |
@@ -368,8 +368,8 @@ RRECOMMENDS_task-custom-tools = "\ | |||
368 | Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH. | 368 | Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH. |
369 | Dropbear is a minimal SSH server appropriate for resource-constrained environments, | 369 | Dropbear is a minimal SSH server appropriate for resource-constrained environments, |
370 | while OpenSSH is a well-known standard SSH server implementation. | 370 | while OpenSSH is a well-known standard SSH server implementation. |
371 | By default, poky-image-sato is configured to use Dropbear. | 371 | By default, core-image-sato is configured to use Dropbear. |
372 | The poky-image-basic and poky-image-lsb images both include OpenSSH. | 372 | The core-image-basic and core-image-lsb images both include OpenSSH. |
373 | To change these defaults, edit the <filename>IMAGE_FEATURES</filename> variable | 373 | To change these defaults, edit the <filename>IMAGE_FEATURES</filename> variable |
374 | so that it sets the image you are working with to include ssh-server-dropbear | 374 | so that it sets the image you are working with to include ssh-server-dropbear |
375 | or ssh-server-openssh. | 375 | or ssh-server-openssh. |
@@ -412,7 +412,7 @@ DISTRO_EXTRA_RDEPENDS += "strace" | |||
412 | </para> | 412 | </para> |
413 | <programlisting> | 413 | <programlisting> |
414 | $ bitbake -c clean task-boot task-base task-poky | 414 | $ bitbake -c clean task-boot task-base task-poky |
415 | $ bitbake poky-image-sato | 415 | $ bitbake core-image-sato |
416 | </programlisting> | 416 | </programlisting> |
417 | </section> | 417 | </section> |
418 | 418 | ||