2023-03-23 23:54:31 +08:00
|
|
|
# Copyright (c) 2023 Yonatan Schachter
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig BINDESC
|
|
|
|
bool "Binary Descriptors"
|
2023-11-16 17:05:29 +08:00
|
|
|
depends on ARCH_SUPPORTS_ROM_START || ARCH_POSIX
|
2023-03-23 23:54:31 +08:00
|
|
|
help
|
|
|
|
Binary Descriptors - constant data accessible outside of the executable image
|
|
|
|
|
|
|
|
if BINDESC
|
|
|
|
|
|
|
|
config BINDESC_DEFINE
|
|
|
|
bool "Binary Descriptors Define"
|
|
|
|
help
|
|
|
|
Enable the app to define its own binary descriptors
|
|
|
|
|
|
|
|
if BINDESC_DEFINE
|
|
|
|
|
|
|
|
source "subsys/bindesc/Kconfig.version"
|
|
|
|
source "subsys/bindesc/Kconfig.build_time"
|
|
|
|
source "subsys/bindesc/Kconfig.host_info"
|
|
|
|
|
|
|
|
endif # BINDESC_DEFINE
|
|
|
|
|
|
|
|
endif # BINDESC
|