mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 21:24:43 +00:00
The 'beaglev_fire' board has its SRAM located at 0x1000000000, and this causes Zephyr to default to the `large` code model. This commit forces the board to use `medany` code model because the `large` code model is not supported by GCC 12.2 included in the current Zephyr SDK 0.17.2. Revert this when Zephyr SDK 0.18.0 with GCC 14.3 is mainlined. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
15 lines
325 B
Plaintext
15 lines
325 B
Plaintext
# Copyright (c) 2023 Microchip Technology Inc
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
CONFIG_MPFS_HAL=n
|
|
CONFIG_BASE64=y
|
|
CONFIG_INCLUDE_RESET_VECTOR=y
|
|
CONFIG_CONSOLE=y
|
|
CONFIG_SERIAL=y
|
|
CONFIG_UART_CONSOLE=y
|
|
CONFIG_XIP=n
|
|
CONFIG_INIT_STACKS=y
|
|
CONFIG_SYS_CLOCK_TICKS_PER_SEC=1000
|
|
CONFIG_RV_BOOT_HART=1
|
|
CONFIG_RISCV_CMODEL_MEDANY=y
|