Message ID | 20241224140251.24389-3-adrian.freihofer@siemens.com |
---|---|
State | Under Review |
Headers | show |
Series | Cover systemd.bbclass and devtool ide-sdk changes | expand |
On Tue Dec 24, 2024 at 3:02 PM CET, Adrian Freihofer via lists.yoctoproject.org wrote: > Replace > devtool ide-sdk --debug-build-config > by > devtool modify --debug-build > > This change was introduced with commit > https://git.yoctoproject.org/poky/commit/?id=1f7eb26c947dde14698ae6e2ab88f0637027f4cb > > Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> > --- > documentation/sdk-manual/extensible.rst | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst > index 9a50d7fc5..3733997fa 100644 > --- a/documentation/sdk-manual/extensible.rst > +++ b/documentation/sdk-manual/extensible.rst > @@ -669,7 +669,8 @@ The extensible SDK supports two different development modes. > IMAGE_INSTALL:append = " my-recipe" > > Assuming the BitBake environment is set up correctly and a workspace has > - been created for the recipe using ``devtool modify my-recipe``, the > + been created for the recipe using ``devtool modify my-recipe`` or probably > + even better by using ``devtool modify my-recipe --debug-build``, the > following command can create the SDK and the configuration for VSCode in > the recipe workspace:: > > @@ -786,8 +787,8 @@ The extensible SDK supports two different development modes. > .. code-block:: sh > > # Create the SDK > - devtool modify cmake-example > - devtool ide-sdk cmake-example core-image-minimal -c --debug-build-config --ide=none > + devtool modify cmake-example --debug-build > + devtool ide-sdk cmake-example core-image-minimal -c --ide=none > > # Install the firmware on a target device or start QEMU > runqemu Reviewed-by: Antonin Godard <antonin.godard@bootlin.com> Thank you! Antonin
diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst index 9a50d7fc5..3733997fa 100644 --- a/documentation/sdk-manual/extensible.rst +++ b/documentation/sdk-manual/extensible.rst @@ -669,7 +669,8 @@ The extensible SDK supports two different development modes. IMAGE_INSTALL:append = " my-recipe" Assuming the BitBake environment is set up correctly and a workspace has - been created for the recipe using ``devtool modify my-recipe``, the + been created for the recipe using ``devtool modify my-recipe`` or probably + even better by using ``devtool modify my-recipe --debug-build``, the following command can create the SDK and the configuration for VSCode in the recipe workspace:: @@ -786,8 +787,8 @@ The extensible SDK supports two different development modes. .. code-block:: sh # Create the SDK - devtool modify cmake-example - devtool ide-sdk cmake-example core-image-minimal -c --debug-build-config --ide=none + devtool modify cmake-example --debug-build + devtool ide-sdk cmake-example core-image-minimal -c --ide=none # Install the firmware on a target device or start QEMU runqemu
Replace devtool ide-sdk --debug-build-config by devtool modify --debug-build This change was introduced with commit https://git.yoctoproject.org/poky/commit/?id=1f7eb26c947dde14698ae6e2ab88f0637027f4cb Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> --- documentation/sdk-manual/extensible.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)