-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
subsys: mgmt: Fix handler search #78278
subsys: mgmt: Fix handler search #78278
Conversation
Allow to implement the same SMP group by multiple modules and iterate over all groups, so it is possible to use RESET command, implemented by Zephyr module and prvide custom BOOTLOADER_INFO command implementation. Signed-off-by: Tomasz Chyrowicz <tomasz.chyrowicz@nordicsemi.no>
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.
Allow to implement the same SMP group by multiple modules
Not a supported operation, if you want a custom implementation you must create a full implementation and disable the original, this is by design
Is there any reasonable way to set the bootloader name for other bootloaders than MCUboot? |
Have created #78285 this allows you to add custom response, now you might think "that's a problem because it will return two responses" - you just need to add your return value, then return an rc error code of |
Thank you, that sounds good! Apart from that - the dependency to the MCUboot must be removed to use it 🙂
|
#78312 and yes |
Allow to implement the same SMP group by multiple modules and iterate over all groups, so it is possible to use RESET command, implemented by Zephyr module and prvide custom BOOTLOADER_INFO command implementation.