boards: arm: stm32f756 with all mpu regions when testing in userspace
Disable the quadspi mpu region of the nucleo_f756zg (like done on nucleo_f746zg) when testing the samples/userspace/shared_mem or tests/kernel/mem_protect/userspace The stm32f7 cortex M7 has 8 MPU regions and the one for quadspi prevents the testcase to PASS. Signed-off-by: Francois Ramu <francois.ramu@st.com>
This commit is contained in:
parent
660149dbf7
commit
391da6f8f5
13
samples/userspace/shared_mem/boards/nucleo_f756zg.overlay
Normal file
13
samples/userspace/shared_mem/boards/nucleo_f756zg.overlay
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* Copyright 2024 STMicroelectronics
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/*
|
||||
* Disable quadspi MPU region for testing
|
||||
* on this stm32f7 target.
|
||||
* Otherwise one region will be missing from the 8 MPU regions
|
||||
*/
|
||||
|
||||
/delete-node/ &quadspi_memory;
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* Copyright 2024 STMicroelectronics
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/*
|
||||
* Disable quadspi MPU region for testing
|
||||
* on this stm32f7 target.
|
||||
* Otherwise one region will be missing from the 8 MPU regions
|
||||
*/
|
||||
|
||||
/delete-node/ &quadspi_memory;
|
Loading…
Reference in a new issue