mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 04:02:31 +00:00
These are no longer needed since commit 4dc9e5b2de
("kconfig: Get rid
of 'option env' bounce symbols"). The C tools are likely to get rid of
them soon too.
The APPLICATION_BASE symbol (option env="PROJECT_BASE") triggered a
compatibility warning, because 'option env' symbols now need to have the
same name as the environment variables they reference to be compatible
with Kconfiglib. APPLICATION_BASE is unused, so just remove it.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
# Kconfig - Private config options for traffic class sample app
|
|
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
mainmenu "Networking traffic class sample application"
|
|
|
|
source "$ZEPHYR_BASE/Kconfig.zephyr"
|
|
|
|
config SAMPLE_VLAN_TAG
|
|
int "Virtual lan tag used in sample app"
|
|
default 100
|
|
range 0 4094
|
|
depends on NET_VLAN
|
|
help
|
|
Set virtual lan tag (id) that is used in sample application.
|
|
|
|
config SAMPLE_VLAN_TAG_2
|
|
int "Second VLAN tag used in sample app"
|
|
default 200
|
|
range 0 4094
|
|
depends on NET_VLAN
|
|
help
|
|
Set virtual lan tag (id) that is used in sample application.
|
|
|
|
config SAMPLE_IPV6_ADDR_2
|
|
string "My IPv6 address for second interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config SAMPLE_IPV4_ADDR_2
|
|
string "My IPv4 address for second interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config SAMPLE_PEER_IPV6_ADDR_2
|
|
string "Peer IPv6 address for second interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config SAMPLE_PEER_IPV4_ADDR_2
|
|
string "Peer IPv4 address for second interface"
|
|
help
|
|
The value depends on your network setup.
|