1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4source "Kconfig.zephyr"
5
6config NET_SAMPLE_CODE_RELOCATE
7	bool "Relocate networking code into RAM"
8	select CODE_DATA_RELOCATION
9	help
10	  Relocate networking code into RAM when running the zperf
11	  sample. Can improve performance on platforms with fast code
12	  RAM.
13
14if NET_SAMPLE_CODE_RELOCATE
15
16config NET_SAMPLE_CODE_RAM_NAME
17	string "Networking code RAM location"
18	default "RAM"
19	help
20	  Region to relocate networking code to
21
22endif # NET_SAMPLE_CODE_RELOCATE
23
24if USB_DEVICE_STACK_NEXT
25# Source common USB sample options used to initialize new experimental USB
26# device stack. The scope of these options is limited to USB samples in project
27# tree, you cannot use them in your own application.
28	source "samples/subsys/usb/common/Kconfig.sample_usbd"
29endif
30