26 lines
408 B
Plaintext
26 lines
408 B
Plaintext
# Private config options for DSA
|
|
|
|
# Copyright 2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
mainmenu "DSA sample application"
|
|
|
|
if NET_DSA
|
|
|
|
config NET_SAMPLE_DSA_MAX_USER_PORTS
|
|
int "DSA user ports maximum number"
|
|
range 2 10
|
|
default 3
|
|
help
|
|
DSA user ports maximum number.
|
|
|
|
config NET_SAMPLE_DSA_LLDP
|
|
bool "DSA LLDP example"
|
|
default y
|
|
help
|
|
Enable DSA LLDP example.
|
|
|
|
endif
|
|
|
|
source "Kconfig.zephyr"
|