-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathKconfig
43 lines (34 loc) · 874 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright (c) 2021 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
#
# This Kconfig file is picked by the Zephyr build system because it is defined
# as the module Kconfig entry point (see zephyr/module.yml). You can browse
# module options by going to Zephyr -> Modules in Kconfig.
menu "Version"
config CEREBRI_BOOT_BANNER
bool "cerebri boot banner"
default y
help
Enable cerebri boot banner
config CEREBRI_APP_NAME
string "cerebri app name"
help
This cerebri app name
config CEREBRI_VERSION_MAJOR
int "major version"
default 0
help
This cerebri major version
config CEREBRI_VERSION_MINOR
int "minor version"
default 1
help
This cerebri minor version
config CEREBRI_VERSION_PATCH
int "patch version"
default 0
help
This cerebri patch version
endmenu
rsource "lib/Kconfig"
rsource "drivers/Kconfig"