summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-03-18 16:02:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-03-19 15:22:27 +0000
commitb685c76b682aa16e98b5b2ac21ba289d4f510d49 (patch)
tree457e1f3b01ea5417f5fd46cdfaa0b5bcaef52b20 /documentation
parent98fb300f40102a29865822fb48d52dd47e42fbd1 (diff)
downloadpoky-b685c76b682aa16e98b5b2ac21ba289d4f510d49.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: b880ac9498764027de435103d493f34adf68dc13) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-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--------------------------------------------------------