23 lines
522 B
Plaintext
23 lines
522 B
Plaintext
|
# Copyright 2023 NXP
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
source "Kconfig.zephyr"
|
||
|
|
||
|
config NET_SAMPLE_CODE_RELOCATE
|
||
|
bool "Relocate networking code into RAM"
|
||
|
select CODE_DATA_RELOCATION
|
||
|
help
|
||
|
Relocate networking code into RAM when running the zperf
|
||
|
sample. Can improve performance on platforms with fast code
|
||
|
RAM.
|
||
|
|
||
|
if NET_SAMPLE_CODE_RELOCATE
|
||
|
|
||
|
config NET_SAMPLE_CODE_RAM_NAME
|
||
|
string "Networking code RAM location"
|
||
|
default "RAM"
|
||
|
help
|
||
|
Region to relocate networking code to
|
||
|
|
||
|
endif # NET_SAMPLE_CODE_RELOCATE
|