mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-25 05:55:21 +00:00
With the new Kconfig preprocessor (described in https://github.com/torvalds/linux/blob/master/Documentation/kbuild/ kconfig-macro-language.txt), the syntax for expanding environment variables is $(FOO) rather than $FOO. $(FOO) is a general preprocessor variable expansion, which falls back to environment variables if the variable isn't set (like in Make). It can also be used in prompts, 'comment's, etc. The old syntax will probably be supported forever in Kconfiglib for backwards compatibility, but might as well make it consistent now that people might start using the preprocessor more. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
# Kconfig - Private config options for LLDP sample app
|
|
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# This sample application will have three network interfaces.
|
|
|
|
mainmenu "LLDP sample application"
|
|
|
|
source "$(ZEPHYR_BASE)/Kconfig.zephyr"
|
|
|
|
if NET_LLDP
|
|
|
|
config NET_SAMPLE_IFACE2_MY_IPV6_ADDR
|
|
string "My IPv6 address for second interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config NET_SAMPLE_IFACE2_MY_IPV4_ADDR
|
|
string "My IPv4 address for second interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config NET_SAMPLE_IFACE2_VLAN_TAG
|
|
int "VLAN tag for second interface"
|
|
default 100
|
|
range 0 4094
|
|
depends on NET_VLAN
|
|
help
|
|
Set VLAN (virtual LAN) tag (id) that is used in the sample
|
|
application.
|
|
|
|
config NET_SAMPLE_IFACE3_MY_IPV6_ADDR
|
|
string "My IPv6 address for third interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config NET_SAMPLE_IFACE3_MY_IPV4_ADDR
|
|
string "My IPv4 address for third interface"
|
|
help
|
|
The value depends on your network setup.
|
|
|
|
config NET_SAMPLE_IFACE3_VLAN_TAG
|
|
int "VLAN tag for third interface"
|
|
default 200
|
|
range 0 4094
|
|
depends on NET_VLAN
|
|
help
|
|
Set VLAN (virtual LAN) tag (id) that is used in the sample
|
|
application.
|
|
|
|
endif
|