Skip to content

Commit 45d379e

Browse files
mmahadevan108nordicjm
authored andcommitted
zephyr: boards: Add files needed for NXP FRDM MCXN947 QSPI variant
1. set BOOT_MAX_IMG_SECTORS value for frmd_mcxn947_qspi. W25Q64 flash on the board is very large (8MB), so we must increase the number of max sectors when targeting this board with MCUboot. 2. Set the zephyr,flash chosen node to point to internal flash as this board supports booting from internal flash only. Signed-off-by: Mahesh Mahadevan <[email protected]>
1 parent 2dcbabc commit 45d379e

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright 2023 NXP
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
CONFIG_BOOT_MAX_IMG_SECTORS=1024
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* Copyright 2023 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
chosen {
9+
zephyr,flash = &flash;
10+
};
11+
};
12+

0 commit comments

Comments
 (0)