This will make adding properties to symbols in the base Zephyr Kconfig files work the same as before. I didn't actually spot any such cases, so this is just to play it safe. It also makes the sample Kconfig symbols appear at the top in the menuconfig interface, which might be nice. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
21 lines
416 B
Plaintext
21 lines
416 B
Plaintext
# Kconfig - Private config options for network statistics sample app
|
|
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
mainmenu "Network statistics sample application"
|
|
|
|
config SAMPLE_PERIOD
|
|
int "How often to print statistics (in seconds)"
|
|
default 30
|
|
range 1 3600
|
|
depends on NET_STATISTICS
|
|
help
|
|
Print statistics after every n. seconds
|
|
|
|
|
|
source "$ZEPHYR_BASE/Kconfig.zephyr"
|