-
Notifications
You must be signed in to change notification settings - Fork 724
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
boot: zephyr: add ram_load overlays for nrf52840dk and mimxrt1050_evk boards #2196
base: main
Are you sure you want to change the base?
boot: zephyr: add ram_load overlays for nrf52840dk and mimxrt1050_evk boards #2196
Conversation
sram@2003FC00 { | ||
compatible = "zephyr,memory-region", "mmio-sram"; | ||
reg = <0x2003FC00 DT_SIZE_K(1)>; |
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.
sram@2003FC00 { | |
compatible = "zephyr,memory-region", "mmio-sram"; | |
reg = <0x2003FC00 DT_SIZE_K(1)>; | |
sram@2003FF00 { | |
compatible = "zephyr,memory-region", "mmio-sram"; | |
reg = <0x2003FF00 0x100>; |
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.
@danieldegrasse Can you respond or make changes, so that we can go through with this PR?
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.
Sure, should be fixed now
c195d33
to
95b4aea
Compare
… boards Add ram load overlays for nrf52840dk and mimxrt1050_evk boards. These ram load overlays are moved from the Zephyr in tree smp_svr sample, to enable ram load support for multiple platforms. Signed-off-by: Daniel DeGrasse <[email protected]>
95b4aea
to
93398ca
Compare
Is the CI failure here expected, because a new revision of Zephyr would be needed to make this overlay work correctly? |
Yes failure here is fine since it's trying to build zephyr's |
@nordicjm what is needed to move this PR forwards? I'm not sure what makes the most sense to sequence this PR since it requires changes on the Zephyr side |
@de-nordic please review |
Add ram load overlays for nrf52840dk and mimxrt1050_evk boards. These ram load overlays are moved from the Zephyr in tree smp_svr sample, to enable ram load support for multiple platforms.