summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/sdk-manual')
-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 05dd527469..3f6a754d88 100644
--- a/documentation/sdk-manual/extensible.rst
+++ b/documentation/sdk-manual/extensible.rst
@@ -76,7 +76,7 @@ Setting up the Extensible SDK environment directly in a Yocto build
76 $ bitbake meta-ide-support 76 $ bitbake meta-ide-support
77 $ bitbake -c populate_sysroot gtk+3 77 $ bitbake -c populate_sysroot gtk+3
78 # or any other target or native item that the application developer would need 78 # or any other target or native item that the application developer would need
79 $ bitbake build-sysroots 79 $ bitbake build-sysroots -c build_native_sysroot && bitbake build-sysroots -c build_target_sysroot
80 80
81Setting up the Extensible SDK from a standalone installer 81Setting up the Extensible SDK from a standalone installer
82--------------------------------------------------------- 82---------------------------------------------------------
@@ -1507,8 +1507,12 @@ In this scenario, the Yocto build tooling, e.g. ``bitbake``
1507is directly accessible to build additional items, and it 1507is directly accessible to build additional items, and it
1508can simply be executed directly:: 1508can simply be executed directly::
1509 1509
1510 $ bitbake curl-native
1511 # Add newly built native items to native sysroot
1512 $ bitbake build-sysroots -c build_native_sysroot
1510 $ bitbake mesa 1513 $ bitbake mesa
1511 $ bitbake build-sysroots 1514 # Add newly built target items to target sysroot
1515 $ bitbake build-sysroots -c build_target_sysroot
1512 1516
1513When using a standalone installer for the Extensible SDK 1517When using a standalone installer for the Extensible SDK
1514-------------------------------------------------------- 1518--------------------------------------------------------