summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-03-18 16:02:10 +0100
committerSteve Sakoman <steve@sakoman.com>2024-03-28 07:08:31 -1000
commit2708ce28014e7f61d8dd09362ad6291dc474c5c1 (patch)
treee29d78ed8126478a38e7b539316cc578679ca4ce
parent1962eae7d96ff94d2c42fa236730614d2cd24fdb (diff)
downloadpoky-2708ce28014e7f61d8dd09362ad6291dc474c5c1.tar.gz
sdk-manual: correctly describe separate build-sysroots tasks in direct sdk workflows
They were separated in https://git.yoctoproject.org/poky/commit/?id=63e53fb8b60d38315015844bd3357fa1649cd639 (From yocto-docs rev: 7cb8ee0b922c57a2fc7100eca585463e888964be) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--documentation/sdk-manual/extensible.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst
index 355c6cb0e4..d335e78623 100644
--- a/documentation/sdk-manual/extensible.rst
+++ b/documentation/sdk-manual/extensible.rst
@@ -74,7 +74,7 @@ Setting up the Extensible SDK environment directly in a Yocto build
74 $ bitbake meta-ide-support 74 $ bitbake meta-ide-support
75 $ bitbake -c populate_sysroot gtk+3 75 $ bitbake -c populate_sysroot gtk+3
76 # or any other target or native item that the application developer would need 76 # or any other target or native item that the application developer would need
77 $ bitbake build-sysroots 77 $ bitbake build-sysroots -c build_native_sysroot && bitbake build-sysroots -c build_target_sysroot
78 78
79Setting up the Extensible SDK from a standalone installer 79Setting up the Extensible SDK from a standalone installer
80--------------------------------------------------------- 80---------------------------------------------------------
@@ -1226,8 +1226,12 @@ In this scenario, the Yocto build tooling, e.g. ``bitbake``
1226is directly accessible to build additional items, and it 1226is directly accessible to build additional items, and it
1227can simply be executed directly:: 1227can simply be executed directly::
1228 1228
1229 $ bitbake curl-native
1230 # Add newly built native items to native sysroot
1231 $ bitbake build-sysroots -c build_native_sysroot
1229 $ bitbake mesa 1232 $ bitbake mesa
1230 $ bitbake build-sysroots 1233 # Add newly built target items to target sysroot
1234 $ bitbake build-sysroots -c build_target_sysroot
1231 1235
1232When using a standalone installer for the Extensible SDK 1236When using a standalone installer for the Extensible SDK
1233-------------------------------------------------------- 1237--------------------------------------------------------