summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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--------------------------------------------------------