-
Notifications
You must be signed in to change notification settings - Fork 7.9k
boards: st: stm32n6570_dk: Clarify RAMLOAD instructions #96267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- Add CONFIG_XIP=n to the project configuration. | ||
- Add ``-- -DSB_CONFIG_MCUBOOT_MODE_RAM_LOAD=y``to the build command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Add CONFIG_XIP=n to the project configuration. | |
- Add ``-- -DSB_CONFIG_MCUBOOT_MODE_RAM_LOAD=y``to the build command. | |
* Add ``CONFIG_XIP=n`` to the project configuration. | |
* Add ``-- -DSB_CONFIG_MCUBOOT_MODE_RAM_LOAD=y``to the build command. |
Would that fix the CI doc build failure?
Maybe:
.. zephyr-app-commands::
:zephyr-app: samples/hello_world
:board: stm32n6570_dk
:west-args: --sysbuild -- -DCONFIG_XIP=n -DSB_CONFIG_MCUBOOT_MODE_RAM_LOAD=y
:goals: build flash
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's worth having a try
By default, application runs in XIP mode. Add ``-DSB_CONFIG_MCUBOOT_MODE_RAM_LOAD=y`` | ||
to use RAMLOAD mode. | ||
.. note:: | ||
By default, application runs in XIP mode, to use RAMLOAD mode: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By default, application runs in XIP mode, to use RAMLOAD mode: | |
By default, applications runs in XIP mode. To use RAMLOAD mode: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+ with Etienne's suggestion, could be:
By default, application runs in XIP mode, to use RAMLOAD mode: | |
By default, application runs in XIP mode. To use RAMLOAD mode, build using the following command instead: | |
.. zephyr-app-commands:: <etc> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, but I kept application in the singular form.
4729e68
to
73edf7b
Compare
Review RAMLOAD section to hopefully avoid possible confusions. Signed-off-by: Erwan Gouriou <erwan.gouriou@st.com>
73edf7b
to
ec25b40
Compare
Please retry analysis of this Pull-Request directly on SonarQube Cloud |
Review RAMLOAD section to hopefully avoid possible confusions.